Skip to content

Commit 3260b3a

Browse files
lsk567claude
andcommitted
Use pip3 to install cmake on macOS for version 3.28+
Brew upgrade was unreliable. Pip3 provides consistent cmake version. Co-Authored-By: Claude Opus 4.5 <[email protected]>
1 parent d3f7cb2 commit 3260b3a

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,12 @@ jobs:
4747
- name: Install system dependencies (macOS)
4848
if: runner.os == 'macOS'
4949
run: |
50-
brew update
51-
brew upgrade cmake || brew install cmake
50+
pip3 install cmake --upgrade
51+
echo "$(python3 -m site --user-base)/bin" >> $GITHUB_PATH
52+
53+
- name: Verify cmake version (macOS)
54+
if: runner.os == 'macOS'
55+
run: |
5256
cmake --version
5357
5458
#===========================================

0 commit comments

Comments
 (0)