diff options
author | Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> | 2023-12-14 12:18:53 +0000 |
---|---|---|
committer | Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> | 2023-12-14 12:18:53 +0000 |
commit | 43c3246af774bda284111056268a814477f9b256 (patch) | |
tree | 4e28b22d75f15e1026e0caf31002d555548d3b55 /.github | |
parent | 9f0f83d6509a214b827f5110c0f857b494ae854c (diff) |
ci: Set `HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK` to avoid failures
Homebrew attempts to check for outdated dependents or those with broken
linkage. Such behavior might lead to failures when Homebrew updates them
on old macOS images.
This change prevents such behavior.
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/ci.yml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c8c4cfa583..53f3c5e116 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -92,6 +92,8 @@ jobs: run: clang --version - name: Install Homebrew packages + env: + HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK: 1 run: brew install automake libtool pkg-config gnu-getopt ccache boost libevent miniupnpc libnatpmp zeromq qt@5 qrencode - name: Set Ccache directory |