From bb0e1fc60f26a707cabf724edcf7cfcab2a269b6 Mon Sep 17 00:00:00 2001 From: Daniel Bevenius Date: Fri, 5 Sep 2025 15:20:32 +0200 Subject: [PATCH] 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. ``` --- .github/workflows/build.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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: |