Skip to content

Commit

Permalink
Add workaround for breakage of brew upgrade in GitHub Actions
Browse files Browse the repository at this point in the history
Workaround for #1321
  • Loading branch information
traversaro authored Dec 29, 2022
1 parent b3959ec commit de4b409
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,14 @@ jobs:
run: |
cd ${ROBOTOLOGY_SUPERBUILD_SOURCE_DIR}
cmake --version
# Update homebrew
# Workaround for https://github.com/robotology/robotology-superbuild/issues/1321
# See https://github.com/actions/setup-python/issues/577#issuecomment-1365231810
rm /usr/local/bin/2to3 || true
rm /usr/local/bin/idle3 || true
rm /usr/local/bin/pydoc3 || true
rm /usr/local/bin/python3 || true
rm /usr/local/bin/python3-config || true
# Update homebrew
brew update
brew upgrade
brew install --cask xquartz
Expand Down

0 comments on commit de4b409

Please sign in to comment.