diff options
author | James McCoy <jamessan@jamessan.com> | 2022-03-07 18:59:50 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-07 18:59:50 -0500 |
commit | bcda54b30e397a5d2932730d20711bd70cdcdfa0 (patch) | |
tree | 64225d5e521c1bb6e15f615a3609ff3499dd2798 | |
parent | 8bae974da3fdc06741d5868af376daa7bd0db638 (diff) | |
parent | d15558bfa31e52e959b9b94c3491f9688f43d2c9 (diff) | |
download | rneovim-bcda54b30e397a5d2932730d20711bd70cdcdfa0.tar.gz rneovim-bcda54b30e397a5d2932730d20711bd70cdcdfa0.tar.bz2 rneovim-bcda54b30e397a5d2932730d20711bd70cdcdfa0.zip |
Merge pull request #17642 from dundargoc/ci/macos/reduce-brew-output
ci(macos): minimize log output from brew update
-rw-r--r-- | .github/workflows/ci.yml | 4 | ||||
-rw-r--r-- | .github/workflows/release.yml | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8c7e31e235..41a22af538 100644 --- 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 index e954b57175..8e0b13d59c 100644 --- 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 |