From 2f28e97ae21e1277536a5e6e6858ba560252fd89 Mon Sep 17 00:00:00 2001 From: schm1dtmac Date: Sat, 31 May 2025 15:47:17 +0100 Subject: [PATCH] Readd Homebrew Cache (used to be on Cirrus), silence more warnings --- .ci/build-mac-arm64.sh | 1 + .ci/build-mac.sh | 1 + .github/workflows/rpcs3.yml | 8 ++++++++ 3 files changed, 10 insertions(+) diff --git a/.ci/build-mac-arm64.sh b/.ci/build-mac-arm64.sh index ece51024ab..631aca0ecc 100755 --- a/.ci/build-mac-arm64.sh +++ b/.ci/build-mac-arm64.sh @@ -3,6 +3,7 @@ # shellcheck disable=SC2086 export HOMEBREW_NO_AUTO_UPDATE=1 export HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK=1 +export HOMEBREW_NO_ENV_HINTS=1 export HOMEBREW_NO_INSTALL_CLEANUP=1 /opt/homebrew/bin/brew install -f --overwrite --quiet nasm ninja p7zip ccache pipenv gnutls freetype #create-dmg diff --git a/.ci/build-mac.sh b/.ci/build-mac.sh index 66b84089a6..316d845b9a 100755 --- a/.ci/build-mac.sh +++ b/.ci/build-mac.sh @@ -3,6 +3,7 @@ # shellcheck disable=SC2086 export HOMEBREW_NO_AUTO_UPDATE=1 export HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK=1 +export HOMEBREW_NO_ENV_HINTS=1 export HOMEBREW_NO_INSTALL_CLEANUP=1 #/usr/sbin/softwareupdate --install-rosetta --agree-to-license diff --git a/.github/workflows/rpcs3.yml b/.github/workflows/rpcs3.yml index 55b8c09aa6..b351c20c83 100644 --- a/.github/workflows/rpcs3.yml +++ b/.github/workflows/rpcs3.yml @@ -144,6 +144,14 @@ jobs: restore-keys: | ${{ runner.os }}-ccache-${{ matrix.name }}- + - name: Setup Homebrew Cache + uses: actions/cache@main + with: + path: "~/Library/Caches/Homebrew" + key: ${{ runner.os }}-homebrew-${{ matrix.name }} + restore-keys: | + ${{ runner.os }}-homebrew-${{ matrix.name }} + - name: Setup Qt Cache uses: actions/cache@main with: