Skip to content

Commit 71a8b1c

Browse files
authored
Merge pull request #1493 from ychin/ci-remove-macos-11
Update CI to remove macOS-11 which has been removed from GitHub Actions
2 parents 081f8e2 + 9124631 commit 71a8b1c

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ runs:
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}

.github/workflows/ci-macvim.yaml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,9 @@ jobs:
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

0 commit comments

Comments
 (0)