mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-13 07:23:39 +00:00
build: another try to handle python unlink/link due to homebrew
Signed-off-by: deadprogram <ron@hybridgroup.com>
This commit is contained in:
@@ -122,14 +122,11 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
- name: Set up Homebrew
|
- name: Set up Homebrew
|
||||||
uses: Homebrew/actions/setup-homebrew@master
|
uses: Homebrew/actions/setup-homebrew@master
|
||||||
with:
|
|
||||||
cask: false # remove this if you need `brew install --cask`
|
|
||||||
test-bot: false # remove this if you need `brew test-bot`
|
|
||||||
- name: Fix Python symlinks
|
- name: Fix Python symlinks
|
||||||
run: |
|
run: |
|
||||||
# Github runners have broken symlinks, so relink
|
# Github runners have broken symlinks, so relink
|
||||||
# see: https://github.com/actions/setup-python/issues/577
|
# see: https://github.com/actions/setup-python/issues/577
|
||||||
brew unlink python@3.11
|
brew list -1 | grep python | while read formula; do brew unlink $formula; brew link --overwrite $formula; done
|
||||||
- name: Install LLVM
|
- name: Install LLVM
|
||||||
run: |
|
run: |
|
||||||
brew install llvm@${{ matrix.version }}
|
brew install llvm@${{ matrix.version }}
|
||||||
|
|||||||
Reference in New Issue
Block a user