Skip to content

Commit 605f984

Browse files
authored
Merge pull request #1498 from ychin/fix-macos12-ci-gettext
Fix macos-12 CI runner not being able to build gettext
2 parents 1b5597c + 67271bf commit 605f984

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/actions/universal-package/action.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,12 @@ runs:
6666
echo '::group::Install formula'
6767
formula=${{ inputs.formula }}
6868
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+
6975
# This will be a no-op if formula was cached
7076
brew install --quiet --formula -s ./${formula}.rb
7177

0 commit comments

Comments
 (0)