We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 1b5597c + 67271bf commit 605f984Copy full SHA for 605f984
.github/actions/universal-package/action.yml
@@ -66,6 +66,12 @@ runs:
66
echo '::group::Install formula'
67
formula=${{ inputs.formula }}
68
69
+ # We don't want brew to go upgrade all our dependents for now. They are
70
+ # time consuming and sometimes cause problems with the CI environment
71
+ # where they fail to link in random binaries (e.g. Python's 2to3),
72
+ # which cause brew install to return non-zero and fail the build.
73
+ export HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK=1
74
+
75
# This will be a no-op if formula was cached
76
brew install --quiet --formula -s ./${formula}.rb
77
0 commit comments