Merge pull request #17642 from dundargoc/ci/macos/reduce-brew-output

ci(macos): minimize log output from brew update
This commit is contained in:
James McCoy 2022-03-07 18:59:50 -05:00 committed by GitHub
commit bcda54b30e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -183,8 +183,8 @@ jobs:
- name: Install brew packages
if: matrix.os == 'osx'
run: |
brew update >/dev/null
brew install automake ccache perl cpanminus ninja
brew update --quiet
brew install automake ccache cpanminus ninja
- name: Setup interpreter packages
run: ./ci/install.sh

View File

@ -85,7 +85,7 @@ jobs:
fetch-depth: 0
- name: Install brew packages
run: |
brew update >/dev/null
brew update --quiet
brew install automake ninja
- if: github.event_name == 'push' || (github.event_name == 'workflow_dispatch' && github.event.inputs.tag_name != 'nightly')
run: printf 'NVIM_BUILD_TYPE=Release\n' >> $GITHUB_ENV