Skip to content

Commit

Permalink
[CI] Fix macOS brew upgrade failing
Browse files Browse the repository at this point in the history
Signed-off-by: Shreyas Atre <[email protected]>
  • Loading branch information
SAtacker committed Jan 3, 2024
1 parent b81299b commit abbe8f3
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -264,6 +264,11 @@ jobs:
#Select latest xcode available on macos-13
sudo xcode-select -s /Applications/Xcode_15.1.app/Contents/Developer
brew update
# workaround for https://github.com/actions/setup-python/issues/577
for pkg in $(brew list | grep '^python@'); do
brew unlink "$pkg"
brew link --overwrite "$pkg"
done
brew upgrade
pip install distro pytest
Expand Down

0 comments on commit abbe8f3

Please sign in to comment.