From cb9ef1516c6fa23c80efbb8848a1fc2007e36c37 Mon Sep 17 00:00:00 2001 From: Beq Date: Thu, 16 Jul 2026 14:02:28 +0100 Subject: [PATCH] Fix build warning on macOs The aws/tap that ius preinstalled on the macos runner seems to be conflicting... let's ignore it. Here is the warning we're hoping to remove. The following taps are not trusted: aws/tap Homebrew is currently ignoring formulae, casks and commands from these taps because tap trust is required. Untap them with: brew untap aws/tap Trust specific formulae, casks and commands with: brew trust --formula // brew trust --cask // brew trust --command // Whole-tap trust is broader and includes all current and future formulae, casks and commands from the listed taps. Trust whole taps with: brew trust aws/tap To disable trust checks: export HOMEBREW_NO_REQUIRE_TAP_TRUST=1 This is not recommended and will be removed in a later release. For more information, see: https://docs.brew.sh/Tap-Trust --- .github/workflows/build_viewer.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/build_viewer.yml b/.github/workflows/build_viewer.yml index c1d69b3599..8ae9aa4dd4 100644 --- a/.github/workflows/build_viewer.yml +++ b/.github/workflows/build_viewer.yml @@ -51,6 +51,10 @@ jobs: if: runner.os == 'macOS' run: | /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" + # aws/tap is preinstalled on the runner but is not used by this workflow. + if brew tap | grep -qx 'aws/tap'; then + brew untap aws/tap + fi brew install bash brew install gnu-sed