Skip to content

Commit 92a8cd2

Browse files
fix: pin Boost to 1.85 on macOS to fix foxy compilation
The vendored foxy library is incompatible with Boost 1.90 (installed by default on macos-15 via Homebrew). Pin to boost@1.85 until foxy is updated to work with the newer Boost version. Co-Authored-By: rlamb@launchdarkly.com <kingdewman@gmail.com>
1 parent 9181140 commit 92a8cd2

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/actions/install-boost/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ runs:
4343
if: runner.os == 'macOS'
4444
shell: bash
4545
run: |
46-
brew install boost
47-
echo "BOOST_ROOT=$(brew --prefix boost)" >> $GITHUB_OUTPUT
46+
brew install boost@1.85
47+
echo "BOOST_ROOT=$(brew --prefix boost@1.85)" >> $GITHUB_OUTPUT
4848
4949
- name: Determine root
5050
id: determine-root

0 commit comments

Comments
 (0)