Skip to content

Commit

Permalink
fix OSX-X86 dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
Vipul-Cariappa committed Nov 27, 2024
1 parent f5c512d commit ab91cc8
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,10 @@ jobs:
run: |
brew update
brew remove [email protected]
brew remove unxip
export ARCHITECHURE=$(uname -m)
if [[ "$ARCHITECHURE" != "x86_64" ]]; then
brew remove unxip
fi
# workaround for https://github.com/actions/setup-python/issues/577
for pkg in $(brew list | grep '^python@'); do
brew unlink "$pkg"
Expand Down

0 comments on commit ab91cc8

Please sign in to comment.