Skip to content

Commit

Permalink
workflows/tests: workaround GitHub Actions python issues.
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
MikeMcQuaid committed Aug 26, 2023
1 parent 3c8b494 commit 298003b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 298003b

Please sign in to comment.