From 298003b18191eb55f58f19ca1b5d0af45e37632a Mon Sep 17 00:00:00 2001 From: Mike McQuaid Date: Sat, 26 Aug 2023 12:25:22 +0100 Subject: [PATCH] workflows/tests: workaround GitHub Actions python issues. As-is there's a Python installed but not properly linked which breaks anything that depends on Python being installed on macOS e.g. Subversion. --- .github/workflows/tests.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 8e92320153..f531f57c0c 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -363,7 +363,10 @@ jobs: - name: Install brew tests macOS dependencies if: runner.os != 'Linux' - run: brew install subversion + run: | + # Workaround GitHub Actions Python issues + brew unlink python && brew link --overwrite python + brew install subversion # brew tests doesn't like world writable directories - name: Cleanup permissions