ci: work-around for broken links in github runners

This commit is contained in:
Kenneth Bell
2023-10-20 12:18:59 +01:00
committed by Ron Evans
parent fa4ca63ff2
commit a90295430c
+6
View File
@@ -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 }}