From 2e80685ec554f9adb58381ea03b7dc57dacf2819 Mon Sep 17 00:00:00 2001 From: Mateusz Daniluk <121170681+VeithMetro@users.noreply.github.com> Date: Thu, 26 Mar 2026 12:08:21 +0100 Subject: [PATCH 1/2] Add environment variable to disable Homebrew auto-update Prevent Homebrew from auto-updating during package installation. --- .github/workflows/MacOS build template.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/MacOS build template.yml b/.github/workflows/MacOS build template.yml index def28327..3b56a7a3 100644 --- a/.github/workflows/MacOS build template.yml +++ b/.github/workflows/MacOS build template.yml @@ -19,9 +19,9 @@ jobs: steps: # --------- Packages & artifacts --------- - name: Install necessary packages + env: + HOMEBREW_NO_AUTO_UPDATE: 1 run: | - brew update - brew upgrade brew install ninja zlib python3 -m venv venv source venv/bin/activate From d085a8f30196fc6bd6d2c6519ad4eacff3bc519b Mon Sep 17 00:00:00 2001 From: Mateusz Daniluk <121170681+VeithMetro@users.noreply.github.com> Date: Thu, 26 Mar 2026 12:36:47 +0100 Subject: [PATCH 2/2] Update ThunderClientLibraries workflow to local path --- .github/workflows/Build ThunderClientLibraries on MacOS.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/Build ThunderClientLibraries on MacOS.yml b/.github/workflows/Build ThunderClientLibraries on MacOS.yml index d5ee783c..af79b65f 100644 --- a/.github/workflows/Build ThunderClientLibraries on MacOS.yml +++ b/.github/workflows/Build ThunderClientLibraries on MacOS.yml @@ -20,4 +20,4 @@ jobs: ThunderClientLibraries_MacOS: needs: ThunderInterfaces_MacOS - uses: rdkcentral/ThunderClientLibraries/.github/workflows/MacOS build template.yml@master + uses: ./.github/workflows/MacOS build template.yml