diff options
author | merge-script <fanquake@gmail.com> | 2024-08-12 11:29:00 +0100 |
---|---|---|
committer | merge-script <fanquake@gmail.com> | 2024-08-12 11:29:00 +0100 |
commit | fc699abcaba8c858def1253a6cc4968d8184c80c (patch) | |
tree | d82e55ee58d309899b2a3a92552569c15460ac24 | |
parent | c7b8f6f2e271ca2f96560e61e34922ba85f85335 (diff) | |
parent | 032ebe5be4dfc3eb3d3693f1284fac6458bacbf3 (diff) |
Merge bitcoin/bitcoin#30591: ci: Silent Homebrew's reinstall warnings
032ebe5be4dfc3eb3d3693f1284fac6458bacbf3 ci: Silent Homebrew's reinstall warnings (Hennadii Stepanov)
Pull request description:
Homebrew's warnings are quite noisy on the master branch:
![image](https://github.com/user-attachments/assets/dcd74414-0e52-4827-88fa-0d2f5b867705)
This PR silents them to allow us to focus on other CI infra warnings once they happen.
Similar to https://github.com/bitcoin-core/secp256k1/pull/1578.
ACKs for top commit:
willcl-ark:
utACK 032ebe5be4dfc3eb3d3693f1284fac6458bacbf3
tdb3:
cr ut ACK 032ebe5be4dfc3eb3d3693f1284fac6458bacbf3
Tree-SHA512: ddcdb689b96d07186cea98b76b49bbca47c621a0784d4ef5487a3da20f9c29dad77da720dd9b7d25ed286b94811969d52ebe9c260632eeee0e9f2f335021a404
-rw-r--r-- | .github/workflows/ci.yml | 4 |
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" |