Skip to content
Merged
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions eng/common/native/install-dependencies.sh
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,13 @@ case "$os" in
export HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK=1
# Skip brew update for now, see https://github.com/actions/setup-python/issues/577
# brew update --preinstall

# Remove Homebrew LLVM if present. The CI runner image may ship with a
# Homebrew LLVM whose libraries (e.g., libunwind.dylib) are the wrong
# architecture or conflict with the Apple SDK, breaking native linking.
# The build uses Apple clang from /usr/bin/clang exclusively.
brew uninstall --ignore-dependencies llvm 2>/dev/null || true
Comment thread
vcsjones marked this conversation as resolved.
Outdated

brew bundle --no-upgrade --file=- <<EOF
brew "cmake"
brew "icu4c"
Expand Down
Loading