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 67
67
formula=${{ inputs.formula }}
68
68
69
69
# 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
71
71
72
72
# If formula was cached, this step is necessary to relink it to brew prefix (e.g. /usr/local)
73
73
brew unlink ${formula} && brew link ${formula}
Original file line number Diff line number Diff line change 54
54
matrix :
55
55
include :
56
56
# 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'
59
60
extra : [vimtags, check-xcodeproj-compat]
60
61
61
62
# Older version of Xcode, and used to publish legacy builds (for macOS 10.9 - 10.12)
@@ -127,12 +128,12 @@ jobs:
127
128
128
129
- name : Install packages
129
130
run : |
130
- brew install libtool
131
+ brew install --quiet libtool
131
132
132
133
- name : Install packages for testing
133
134
run : |
134
135
# 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
136
137
137
138
- name : Grant microphone access for macos-14
138
139
if : matrix.os == 'macos-14'
@@ -147,8 +148,8 @@ jobs:
147
148
# be installed on runners. Since we use stable ABI, the exact version
148
149
# on CI does not matter.
149
150
150
- brew install ruby
151
- brew install lua
151
+ brew install --quiet ruby
152
+ brew install --quiet lua
152
153
153
154
if [[ -d $(brew --prefix)/Cellar/perl ]]; then
154
155
# We just use system perl to reduce dependencies
You can’t perform that action at this time.
0 commit comments