ci(macos): minimize log output from brew update

Also remove perl from brew install to prevent a warning that states it's
already installed.
This commit is contained in:
Dundar Göc 2022-03-07 15:34:12 +01:00
parent c400688752
commit d15558bfa3
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