From dc6ea847e17cf1cffe05822df4f22dfa0cb9c101 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Martin=20Matu=C5=A1ka?= Date: Sat, 13 Sep 2025 21:36:29 +0200 Subject: [PATCH] Merge pull request #2731 from mmatuska/fix/macosci CI: add workaround for cmake installed from local/pinned tab on GH/MacOS (cherry picked from commit 38debf6be13046b16abf0ec31349d7298b33280e) --- build/ci/github_actions/install-macos-dependencies.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build/ci/github_actions/install-macos-dependencies.sh b/build/ci/github_actions/install-macos-dependencies.sh index 2aa4823fc..b33aed5e5 100755 --- a/build/ci/github_actions/install-macos-dependencies.sh +++ b/build/ci/github_actions/install-macos-dependencies.sh @@ -5,6 +5,9 @@ set -eux #brew update > /dev/null #brew upgrade > /dev/null +# Workaround for cmake in local/pinned tap issue +brew uninstall cmake + # This does an upgrade if the package is already installed brew install \ autoconf \ -- 2.47.3