aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorIvan Nardi <12729895+IvanNardi@users.noreply.github.com>2024-03-13 19:22:13 +0100
committerGitHub <noreply@github.com>2024-03-13 19:22:13 +0100
commit4102c8df7256a8031f76c8e02713d6e063cba6b9 (patch)
tree0f3397b09b6e663158d9d441e3e9631b8b4fe164 /.github
parent1aedbefffa715e2baf20a1ea8b6a3ac533a1ca41 (diff)
CI: fix build on MacOS-13 runners (#2343)
Workaroud for Homebrew's python link error See: https://github.com/Homebrew/homebrew-core/issues/165793#issuecomment-1991817938
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/build.yml5
1 files changed, 5 insertions, 0 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index eb237ea09..c1e6568f6 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -284,6 +284,11 @@ jobs:
- name: Installing MacOS prerequisites
if: startsWith(matrix.os, 'macOS') && startsWith(matrix.arch, 'x86_64')
run: |
+ # A workaround for "The `brew link` step did not complete successfully" error.
+ # See https://github.com/Homebrew/homebrew-core/issues/165793#issuecomment-1991817938
+ find /usr/local/bin -lname '*/Library/Frameworks/Python.framework/*' -delete
+ sudo rm -rf /Library/Frameworks/Python.framework/
+ brew install --force python3 && brew unlink python3 && brew unlink python3 && brew link --overwrite python3
brew install coreutils wdiff colordiff autoconf automake libtool pkg-config gettext json-c rrdtool
- name: Install MacOS Prerequisites (libgcrypt)
if: startsWith(matrix.os, 'macOS') && startsWith(matrix.arch, 'x86_64') && startsWith(matrix.gcrypt, '--with-local-libgcrypt')