Browse Source

ci: work-around for broken links in github runners

pull/3976/head
Kenneth Bell 1 year ago
committed by Ron Evans
parent
commit
a90295430c
  1. 6
      .github/workflows/build-macos.yml

6
.github/workflows/build-macos.yml

@ -122,6 +122,12 @@ jobs:
steps: steps:
- name: Update Homebrew - name: Update Homebrew
run: brew update 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 - name: Install LLVM
run: | run: |
HOMEBREW_NO_AUTO_UPDATE=1 brew install llvm@${{ matrix.version }} HOMEBREW_NO_AUTO_UPDATE=1 brew install llvm@${{ matrix.version }}

Loading…
Cancel
Save