ci: don't explicitly install cmake anymore for macOS builds (#4013)

Something has changed, hopefully the system installed cmake plays nice

<img width="623" height="304" alt="image"
src="https://github.com/user-attachments/assets/30b9506f-eb7c-4dca-b4bd-5276b1d351e1"
/>
This commit is contained in:
Tyler Wilding
2025-08-30 10:59:36 -04:00
committed by GitHub
parent 4bf4f1b580
commit 3c23e76000
2 changed files with 16 additions and 2 deletions
+8 -1
View File
@@ -25,7 +25,14 @@ jobs:
uses: actions/checkout@v4
- name: Install Package Dependencies
run: brew install cmake ninja nasm
env:
HOMEBREW_NO_INSTALL_CLEANUP: 1
HOMEBREW_NO_ANALYTICS: 1
run: |
if ! brew install ninja nasm; then
brew update
brew install ninja nasm
fi
- name: Setup sccache
uses: hendrikmuhs/ccache-action@v1.2.18
+8 -1
View File
@@ -35,7 +35,14 @@ jobs:
fetch-tags: true
- name: Install Package Dependencies
run: brew install cmake nasm ninja
env:
HOMEBREW_NO_INSTALL_CLEANUP: 1
HOMEBREW_NO_ANALYTICS: 1
run: |
if ! brew install ninja nasm; then
brew update
brew install ninja nasm
fi
- name: Setup sccache
uses: hendrikmuhs/ccache-action@v1.2.18