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 97a534d commit 0d3b47bCopy full SHA for 0d3b47b
.github/workflows/build_steps.yml
@@ -82,8 +82,10 @@ jobs:
82
- name: Setup macOS build environment
83
if: matrix.os == 'macos'
84
run: |
85
- brew install cmake ninja
+ # Install cmake<4 (3.31.6)
86
+ brew install https://github.com/Homebrew/homebrew-core/raw/b4e46db74e74a8c1650b38b1da222284ce1ec5ce/Formula/cmake.rb
87
brew install sccache
88
+ brew install bison # required by thrift pulled via vcpkg
89
echo "SCCACHE_DIR=/tmp/sccache" >> $GITHUB_ENV
90
mkdir -p /tmp/sccache
91
0 commit comments