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 d7c1b59 commit 731db33Copy full SHA for 731db33
.github/workflows/ci.yml
@@ -279,7 +279,10 @@ jobs:
279
run: |
280
brew update
281
brew remove [email protected]
282
- brew remove unxip
+ export ARCHITECHURE=$(uname -m)
283
+ if [[ "$ARCHITECHURE" != "x86_64" ]]; then
284
+ brew remove unxip
285
+ fi
286
# workaround for https://github.com/actions/setup-python/issues/577
287
for pkg in $(brew list | grep '^python@'); do
288
brew unlink "$pkg"
0 commit comments