Skip to content

Commit 373d3fb

Browse files
fix OSX-X86 dependency
1 parent f6120bf commit 373d3fb

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,10 @@ jobs:
304304
run: |
305305
brew update
306306
brew remove [email protected]
307-
brew remove unxip
307+
export ARCHITECHURE=$(uname -m)
308+
if [[ "$ARCHITECHURE" != "x86_64" ]]; then
309+
brew remove unxip
310+
fi
308311
# workaround for https://github.com/actions/setup-python/issues/577
309312
for pkg in $(brew list | grep '^python@'); do
310313
brew unlink "$pkg"

0 commit comments

Comments
 (0)