Skip to content

Commit 731db33

Browse files
fix OSX-X86 dependency
1 parent d7c1b59 commit 731db33

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
@@ -279,7 +279,10 @@ jobs:
279279
run: |
280280
brew update
281281
brew remove [email protected]
282-
brew remove unxip
282+
export ARCHITECHURE=$(uname -m)
283+
if [[ "$ARCHITECHURE" != "x86_64" ]]; then
284+
brew remove unxip
285+
fi
283286
# workaround for https://github.com/actions/setup-python/issues/577
284287
for pkg in $(brew list | grep '^python@'); do
285288
brew unlink "$pkg"

0 commit comments

Comments
 (0)