From 1024ffe1b3c3e1a8fbf64fcf4ca79ecb7b7545b3 Mon Sep 17 00:00:00 2001 From: Tamir Duberstein Date: Sun, 18 Feb 2024 18:21:04 +0000 Subject: [PATCH] Install libelf on macOS Seems it was removed in https://github.com/actions/runner-images/releases/tag/macos-13%2F20240204.1 though it's not called out in the notes. --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 52ea04e5..e20231fb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -234,7 +234,7 @@ jobs: find /usr/local/bin -type l -exec sh -c 'readlink -f "$1" \ | grep -q ^/Library/Frameworks/Python.framework/Versions/' _ {} \; -exec rm -v {} \; HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK=1 \ - brew install dpkg findutils gnu-tar llvm pkg-config qemu + brew install dpkg findutils gnu-tar llvm pkg-config qemu libelf 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