We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 44ff9d9 commit ae74a36Copy full SHA for ae74a36
1 file changed
scripts/downgrade_cmake.sh
@@ -5,6 +5,10 @@ PLATFORM="${GHA_OS_NAME}"
5
6
if [[ "$PLATFORM" == "macos" ]]; then
7
brew uninstall cmake
8
- brew install cmake@3.31.9
9
- brew link --force --overwrite cmake@3.31.9
+ wget https://github.com/Kitware/CMake/releases/download/v3.31.9/cmake-3.31.9-macos-universal.tar.gz
+
10
+ tar -xzf cmake-3.31.9-macos-universal.tar.gz
11
12
+ sudo mv cmake-3.31.9-macos-universal /usr/local/cmake-3.31.9
13
+ echo "/usr/local/cmake-3.31.9/CMake.app/Contents/bin" >> $GITHUB_PATH
14
fi
0 commit comments