From 0933ffd80574e12d2914259cbfc90107408aaec0 Mon Sep 17 00:00:00 2001 From: Chocobo1 Date: Sun, 31 Aug 2025 21:15:13 +0800 Subject: [PATCH] GHA CI: use preinstalled packages on macOS This is to address the following error: https://github.com/qbittorrent/qBittorrent/actions/runs/17323566048/job/49182687551?pr=23182#step:4:745 > Error: cmake was installed from the local/pinned tap > but you are trying to install it from the homebrew/core tap. > Formulae with the same name from different taps cannot be installed at the same time. PR #23184. --- .github/workflows/ci_macos.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci_macos.yaml b/.github/workflows/ci_macos.yaml index abc6c9f7d..7e9ef8245 100644 --- a/.github/workflows/ci_macos.yaml +++ b/.github/workflows/ci_macos.yaml @@ -43,8 +43,8 @@ jobs: command: | brew update > /dev/null brew install \ - cmake ninja \ openssl@3 zlib + # preinstalled on the image: cmake ninja - name: Setup ccache uses: Chocobo1/setup-ccache-action@v1