From 1d271611c4caae44dac9ef434596b5aec40c12cf Mon Sep 17 00:00:00 2001 From: Thomas Krijnen Date: Sat, 14 Dec 2024 15:34:42 +0100 Subject: [PATCH] Try work-around brew install issue on OSX build --- .github/workflows/build_osx.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.github/workflows/build_osx.yml b/.github/workflows/build_osx.yml index 83fba20d13..d70cf0930c 100644 --- a/.github/workflows/build_osx.yml +++ b/.github/workflows/build_osx.yml @@ -119,6 +119,17 @@ jobs: - name: Overwrite aws cli run: | + # Error: The `brew link` step did not complete successfully + # The formula built, but is not symlinked into /usr/local + # Could not symlink bin/idle3 + # Target /usr/local/bin/idle3 + # already exists. You may want to remove it: + # rm '/usr/local/bin/idle3' + # + # To force the link and overwrite all conflicting files: + # brew link --overwrite python@3.13 + brew link --overwrite python@3.12 + brew link --overwrite python@3.13 # https://github.com/rust-lang/rustup/pull/3989/files brew install --overwrite awscli