From 278fca26d7b4fd2dc810d610c6a2f6dccb68b1ec Mon Sep 17 00:00:00 2001 From: Uwe Rathmann Date: Mon, 17 Jun 2024 11:51:36 +0200 Subject: [PATCH] CI: Fix builds on Mac --- .github/workflows/cmake.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index 7d021744..30ec807c 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -277,7 +277,8 @@ jobs: - name: Install dependencies on macos if: startsWith(matrix.config.os, 'macos') run: | - brew install p7zip cmake ninja + find /opt/homebrew/ -name EXTERNALLY-MANAGED|xargs rm + brew install cmake ninja ninja --version cmake --version @@ -322,7 +323,7 @@ jobs: - name: Install Qt5 if: endsWith(matrix.config.name, 'Qt5') - uses: jurplel/install-qt-action@v3 + uses: jurplel/install-qt-action@v4 with: version: "5.15.2" target: "desktop" @@ -336,7 +337,7 @@ jobs: - name: Install Qt6 if: endsWith(matrix.config.name, 'Qt6') - uses: jurplel/install-qt-action@v3 + uses: jurplel/install-qt-action@v4 with: version: "6.5.0" target: "desktop"