We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 00821b2 commit 3ad4be0Copy full SHA for 3ad4be0
.github/workflows/build.yml
@@ -132,6 +132,11 @@ jobs:
132
steps:
133
- name: Checkout
134
uses: actions/checkout@v4
135
+ - name: Uninstall arm64 Homebrew
136
+ if: runner.environment == 'github-hosted'
137
+ run: |
138
+ NONINTERACTIVE=1 /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/uninstall.sh)"
139
+ rm -rf /opt/homebrew || true
140
- name: Set up x86_64 Homebrew
141
if: runner.environment == 'github-hosted'
142
run: |
@@ -192,3 +197,4 @@ jobs:
192
197
bin/openocd-*-lin.tar.gz
193
198
bin/riscv-toolchain-*-lin.tar.gz
194
199
200
+
0 commit comments