aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorHennadii Stepanov <32963518+hebasto@users.noreply.github.com>2024-08-05 17:14:33 +0100
committerHennadii Stepanov <32963518+hebasto@users.noreply.github.com>2024-08-05 17:14:33 +0100
commit032ebe5be4dfc3eb3d3693f1284fac6458bacbf3 (patch)
tree44affaa97b7dad7b619cd1f9dbc3036164605649 /.github/workflows
parentd15d95c5cc6fd1d06bb6531e3e0a046488e6f356 (diff)
ci: Silent Homebrew's reinstall warnings
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/ci.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 8112f2828b..7961c3c900 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -104,8 +104,8 @@ jobs:
HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK: 1
run: |
# A workaround for "The `brew link` step did not complete successfully" error.
- brew install python@3 || brew link --overwrite python@3
- brew install automake libtool pkg-config gnu-getopt ccache boost libevent miniupnpc libnatpmp zeromq qt@5 qrencode
+ brew install --quiet python@3 || brew link --overwrite python@3
+ brew install --quiet automake libtool pkg-config gnu-getopt ccache boost libevent miniupnpc libnatpmp zeromq qt@5 qrencode
- name: Set Ccache directory
run: echo "CCACHE_DIR=${RUNNER_TEMP}/ccache_dir" >> "$GITHUB_ENV"