Skip to content

Commit

Permalink
ci: work-around for broken links in github runners
Browse files Browse the repository at this point in the history
  • Loading branch information
kenbell authored and deadprogram committed Oct 23, 2023
1 parent fa4ca63 commit a902954
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/build-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,12 @@ jobs:
steps:
- name: Update Homebrew
run: brew update
- name: Fix Python symlinks
run: |
# Github runners have broken symlinks, so relink
# see: https://github.com/actions/setup-python/issues/577
brew unlink python
brew link --overwrite python
- name: Install LLVM
run: |
HOMEBREW_NO_AUTO_UPDATE=1 brew install llvm@${{ matrix.version }}
Expand Down

0 comments on commit a902954

Please sign in to comment.