From 756e6b979a0b473847e48c1de765c1ed6527b2ef Mon Sep 17 00:00:00 2001 From: Tamir Duberstein Date: Fri, 18 Aug 2023 10:51:09 -0400 Subject: [PATCH] github: brew reinstall qemu See https://github.com/Homebrew/homebrew-core/pull/139492. --- .github/workflows/ci.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7d2e941c..fdb8b994 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -197,7 +197,10 @@ jobs: # We also need LLVM for bpf-linker, see comment below. run: | set -euxo pipefail - brew install dpkg findutils gnu-tar llvm pkg-config qemu + brew update + brew install dpkg findutils gnu-tar llvm pkg-config + # Workaround for https://github.com/Homebrew/homebrew-core/pull/139492. + brew reinstall qemu 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