Skip to content

Commit 0d3b47b

Browse files
committed
Install bison and cmake<4 only
ninja is already installed Signed-off-by: Julien Jerphanion <[email protected]>
1 parent 97a534d commit 0d3b47b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/build_steps.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,8 +82,10 @@ jobs:
8282
- name: Setup macOS build environment
8383
if: matrix.os == 'macos'
8484
run: |
85-
brew install cmake ninja
85+
# Install cmake<4 (3.31.6)
86+
brew install https://github.com/Homebrew/homebrew-core/raw/b4e46db74e74a8c1650b38b1da222284ce1ec5ce/Formula/cmake.rb
8687
brew install sccache
88+
brew install bison # required by thrift pulled via vcpkg
8789
echo "SCCACHE_DIR=/tmp/sccache" >> $GITHUB_ENV
8890
mkdir -p /tmp/sccache
8991

0 commit comments

Comments
 (0)