We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2b46714 commit 3c0be30Copy full SHA for 3c0be30
1 file changed
.github/workflows/ci.yml
@@ -70,11 +70,13 @@ jobs:
70
- name: Install dependencies
71
run: |
72
brew install openssl
73
-
74
- - name: Setup CMake
75
- uses: kitware/cmake-action@v1
76
- with:
77
- version: 3.26.x
+ # Install CMake 3.26.4 from Kitware
+ curl -L https://github.com/Kitware/CMake/releases/download/v3.26.4/cmake-3.26.4-macos-universal.dmg -o cmake.dmg
+ hdiutil attach cmake.dmg
+ sudo cp -R /Volumes/cmake-3.26.4-macos-universal/CMake.app /Applications/
+ sudo /Applications/CMake.app/Contents/bin/cmake-gui --install
78
+ hdiutil detach /Volumes/cmake-3.26.4-macos-universal
79
+ rm cmake.dmg
80
81
- name: Configure and build
82
env:
0 commit comments