mirror of
https://github.com/neovim/neovim.git
synced 2024-12-19 18:55:14 -07:00
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:
parent
c400688752
commit
d15558bfa3
4
.github/workflows/ci.yml
vendored
4
.github/workflows/ci.yml
vendored
@ -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
|
||||
|
2
.github/workflows/release.yml
vendored
2
.github/workflows/release.yml
vendored
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user