We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e19960d + 1430f56 commit 79423abCopy full SHA for 79423ab
1 file changed
eng/install-native-dependencies.sh
@@ -44,6 +44,13 @@ case "$os" in
44
export HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK=1
45
# Skip brew update for now, see https://github.com/actions/setup-python/issues/577
46
# brew update --preinstall
47
+
48
+ # Remove Homebrew LLVM if present. The CI runner image may ship with a
49
+ # Homebrew LLVM whose libraries (e.g., libunwind.dylib) are the wrong
50
+ # architecture or conflict with the Apple SDK, breaking native linking.
51
+ # The build uses Apple clang from /usr/bin/clang exclusively.
52
+ brew uninstall --ignore-dependencies llvm 2>/dev/null || true
53
54
brew bundle --no-upgrade --file "$(dirname "$0")/Brewfile"
55
;;
56
0 commit comments