aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/ci.yml
diff options
context:
space:
mode:
authorfanquake <fanquake@gmail.com>2024-03-25 16:50:52 +0000
committerfanquake <fanquake@gmail.com>2024-03-25 16:51:08 +0000
commit0b4aa31c34b239ec7da36760a2670792184c3ba8 (patch)
treea74410da915c92dfc1ffa2e04cd5bfb33d6a2bae /.github/workflows/ci.yml
parentc33e83a53a863e55413bee2893716b93165bf656 (diff)
parentcc0553d0d666a6ad5cdd3b88ddb06af883b6d7a1 (diff)
Merge bitcoin/bitcoin#29719: [26.x] final changes for 26.1v26.1
cc0553d0d666a6ad5cdd3b88ddb06af883b6d7a1 [doc] add manual pages for 26.1 (glozow) 785242dd4ca5b05155f67a8ab097dc35ee183559 [doc] update release notes 26.1 (glozow) 5f06dcf9c9481ab8f034aece447e12da67ab7ce7 [build] bump version to 26.1 final (glozow) b53bf22c722309cba923b90840c1e48b98f553c9 ci, macos: Use `--break-system-packages` with Homebrew's python (Hennadii Stepanov) 324e56239960308333ac9e46f1c815020f0b149f ci: Add workaround for Homebrew's python link error (Hennadii Stepanov) Pull request description: Final changes for `v26.1`. Bins for rc2 have been available for 10 days and I haven't seen any bug reports or new things to add. Includes #29610 backport for the CI, which has no effect on what goes into the release. Website PR: https://github.com/bitcoin-core/bitcoincore.org/pull/1009 ACKs for top commit: hebasto: ACK cc0553d0d666a6ad5cdd3b88ddb06af883b6d7a1. fanquake: ACK cc0553d0d666a6ad5cdd3b88ddb06af883b6d7a1 stickies-v: ACK cc0553d0d666a6ad5cdd3b88ddb06af883b6d7a1 (modulo CI passing) Tree-SHA512: d032157c7cdf07a474e40b947f7e51bfc6a8e280e43345522bad67b6ad449d473f29bf03ee845b2e403693c1c81078589d042337c895eceb8a59cb4340432887
Diffstat (limited to '.github/workflows/ci.yml')
-rw-r--r--.github/workflows/ci.yml5
1 files changed, 4 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 702255ea51..d8fa7f9a68 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -96,7 +96,10 @@ jobs:
- 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
+ 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
- name: Set Ccache directory
run: echo "CCACHE_DIR=${RUNNER_TEMP}/ccache_dir" >> "$GITHUB_ENV"