We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d19285a commit 511f27cCopy full SHA for 511f27c
.github/workflows/rosetta-on-arm-macos-runner.yml
@@ -23,6 +23,10 @@ jobs:
23
- name: Install x86_64 Homebrew
24
run: |
25
/usr/bin/arch -x86_64 /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
26
- - name: Install LLVm from x86_64 Homebrew
+ - name: Install LLVM from x86_64 Homebrew
27
+ continue-on-error: true # Allow this as Python (installed as LLVM dependency) should fail when Homebrew links it.
28
- /usr/bin/arch -x86_64 /usr/local/bin/brew install --force llvm
29
+ /usr/bin/arch -x86_64 /usr/local/bin/brew install llvm
30
+ - name: Force link Python installed from x86_64 Homebrew
31
+ run: |
32
+ /usr/bin/arch -x86_64 /usr/local/bin/brew link --overwrite python3
0 commit comments