Skip to content

Commit

Permalink
github/workflows: force deletion of existing upstream python symlinks…
Browse files Browse the repository at this point in the history
… on macOS

This way each time a new Python version is installed via Homebrew
, we don't get CI failures due to the upstream Python distribution
also being installed.

Ref: actions/runner-images#6459
Ref: actions/runner-images#6507
Ref: actions/runner-images#2322
  • Loading branch information
jeeb authored and dyphire committed Feb 22, 2023
1 parent 781e400 commit a6239fa
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,11 @@ jobs:
steps:
- uses: actions/checkout@v3

- name: Remove stray upstream python binary symlinks under /usr/local
run: |
find /usr/local/bin -lname '*/Library/Frameworks/Python.framework/*' -delete -print
brew unlink python && brew link --overwrite python
- name: Install dependencies
run: |
brew update
Expand Down

0 comments on commit a6239fa

Please sign in to comment.