From c237aa40baa86aa402fcaf72fa2564494de9abf2 Mon Sep 17 00:00:00 2001 From: Totto16 Date: Tue, 7 May 2024 14:48:43 +0200 Subject: [PATCH] CI: remove temporary fix for macos --- .github/workflows/meson.yml | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/.github/workflows/meson.yml b/.github/workflows/meson.yml index 00990d39..40278cbd 100644 --- a/.github/workflows/meson.yml +++ b/.github/workflows/meson.yml @@ -134,19 +134,10 @@ jobs: echo "CXX_LD=lld" >> "$GITHUB_ENV" echo "OBJC_LD=lld" >> "$GITHUB_ENV" - - name: Unbreak Python in GHA for 3.11 (MacOS 13 image) - if: matrix.config.os == 'macos' && matrix.config.os-version == 13 - 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 - - name: Setup meson (MacOS) if: matrix.config.os == 'macos' run: | - brew update + brew update brew install meson - name: Setup meson