]> git.djapps.eu Git - pkg/ggml/sources/whisper.cpp/commitdiff
ci : remove brew installation of cmake for macos-latest (#3408)
authorDaniel Bevenius <redacted>
Fri, 5 Sep 2025 13:20:32 +0000 (15:20 +0200)
committerGitHub <redacted>
Fri, 5 Sep 2025 13:20:32 +0000 (15:20 +0200)
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.
```

.github/workflows/build.yml

index 565f1985dd7293d6aa520aa5f6fd3de839833084..dd4eff2c7fb6de29817fbfc46aed82e04dd90128 100644 (file)
@@ -241,7 +241,8 @@ jobs:
       - name: Dependencies
         run: |
           brew update
-          brew install sdl2 cmake
+          cmake --version
+          brew install sdl2
 
       - name: Build
         run: |