diff options
author | Dundar Göc <gocdundar@gmail.com> | 2022-03-07 15:34:12 +0100 |
---|---|---|
committer | Dundar Göc <gocdundar@gmail.com> | 2022-03-07 23:49:52 +0100 |
commit | d15558bfa31e52e959b9b94c3491f9688f43d2c9 (patch) | |
tree | 93774255df2def14f67b2321fc9636fc97643464 | |
parent | c4006887521c2e4f16f1122a8ee3231612c4d11c (diff) | |
download | rneovim-d15558bfa31e52e959b9b94c3491f9688f43d2c9.tar.gz rneovim-d15558bfa31e52e959b9b94c3491f9688f43d2c9.tar.bz2 rneovim-d15558bfa31e52e959b9b94c3491f9688f43d2c9.zip |
ci(macos): minimize log output from brew update
Also remove perl from brew install to prevent a warning that states it's
already installed.
-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 |