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: