neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

commit bcda54b30e397a5d2932730d20711bd70cdcdfa0
parent 8bae974da3fdc06741d5868af376daa7bd0db638
Author: James McCoy <jamessan@jamessan.com>
Date:   Mon,  7 Mar 2022 18:59:50 -0500

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

ci(macos): minimize log output from brew update
Diffstat:
M.github/workflows/ci.yml | 4++--
M.github/workflows/release.yml | 2+-
2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml @@ -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 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml @@ -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