From: Daniel Bevenius Date: Fri, 5 Sep 2025 13:20:32 +0000 (+0200) Subject: ci : remove brew installation of cmake for macos-latest (#3408) X-Git-Tag: upstream/1.8.0~243 X-Git-Url: https://git.djapps.eu/?a=commitdiff_plain;h=bb0e1fc60f26a707cabf724edcf7cfcab2a269b6;p=pkg%2Fggml%2Fsources%2Fwhisper.cpp ci : remove brew installation of cmake for macos-latest (#3408) This commit remove the brew install of cmake for macos-latest as this now seems to be pre-installed on the runner. The motivation for this is that this job is failing with the following error: ```console 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. ``` --- diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 565f1985..dd4eff2c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -241,7 +241,8 @@ jobs: - name: Dependencies run: | brew update - brew install sdl2 cmake + cmake --version + brew install sdl2 - name: Build run: |