File tree Expand file tree Collapse file tree 2 files changed +8
-7
lines changed
actions/universal-package Expand file tree Collapse file tree 2 files changed +8
-7
lines changed Original file line number Diff line number Diff line change 6767 formula=${{ inputs.formula }}
6868
6969 # This will be a no-op if formula was cached
70- brew install --formula -s ./${formula}.rb
70+ brew install --quiet -- formula -s ./${formula}.rb
7171
7272 # If formula was cached, this step is necessary to relink it to brew prefix (e.g. /usr/local)
7373 brew unlink ${formula} && brew link ${formula}
Original file line number Diff line number Diff line change 5454 matrix :
5555 include :
5656 # Oldest version of Xcode supported on GitHub Action to test source code backwards compatibility
57- - os : macos-11
58- xcode : ' 11.7'
57+ # This version of Xcode can run on macOS 11 where as 13.3 has to run on macOS 12.
58+ - os : macos-12
59+ xcode : ' 13.2.1'
5960 extra : [vimtags, check-xcodeproj-compat]
6061
6162 # Older version of Xcode, and used to publish legacy builds (for macOS 10.9 - 10.12)
@@ -127,12 +128,12 @@ jobs:
127128
128129 - name : Install packages
129130 run : |
130- brew install libtool
131+ brew install --quiet libtool
131132
132133 - name : Install packages for testing
133134 run : |
134135 # Apple diff is broken. Use GNU diff instead. See http://github.com/vim/vim/issues/14056.
135- brew install diffutils
136+ brew install --quiet diffutils
136137
137138 - name : Grant microphone access for macos-14
138139 if : matrix.os == 'macos-14'
@@ -147,8 +148,8 @@ jobs:
147148 # be installed on runners. Since we use stable ABI, the exact version
148149 # on CI does not matter.
149150
150- brew install ruby
151- brew install lua
151+ brew install --quiet ruby
152+ brew install --quiet lua
152153
153154 if [[ -d $(brew --prefix)/Cellar/perl ]]; then
154155 # We just use system perl to reduce dependencies
You can’t perform that action at this time.
0 commit comments