From ceeb233ff652eda1ede37c4e763154fbb3981b6b Mon Sep 17 00:00:00 2001 From: deadprogram Date: Mon, 18 Dec 2023 12:11:01 +0100 Subject: [PATCH] build: another try to handle python unlink/link due to homebrew Signed-off-by: deadprogram --- .github/workflows/build-macos.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/build-macos.yml b/.github/workflows/build-macos.yml index fd5b5c9a..53bde452 100644 --- a/.github/workflows/build-macos.yml +++ b/.github/workflows/build-macos.yml @@ -122,14 +122,11 @@ jobs: steps: - name: Set up Homebrew uses: Homebrew/actions/setup-homebrew@master - with: - cask: false # remove this if you need `brew install --cask` - test-bot: false # remove this if you need `brew test-bot` - name: Fix Python symlinks run: | # Github runners have broken symlinks, so relink # see: https://github.com/actions/setup-python/issues/577 - brew unlink python@3.11 + brew list -1 | grep python | while read formula; do brew unlink $formula; brew link --overwrite $formula; done - name: Install LLVM run: | brew install llvm@${{ matrix.version }}