Skip to content

Commit

Permalink
insulate workflow from homebrew location.
Browse files Browse the repository at this point in the history
  • Loading branch information
tsteven4 committed Apr 16, 2024
1 parent b4812bf commit 9bdcbcf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,11 +74,11 @@ jobs:
# https://github.com/actions/runner-images/issues/2322
# brew update # skip update for now to avoid link issues AND many slow dependency upGRADES.
brew list -1 | grep python
ls -l /usr/local/bin | grep -i python
ls -l $(brew --prefix)/bin | grep -i python
# workaround for https://github.com/actions/setup-python/issues/577
brew list -1 | grep python | while read formula; do brew unlink $formula; brew link --overwrite $formula; done
brew list -1 | grep python
ls -l /usr/local/bin | grep -i python
ls -l $(brew --prefix)/bin | grep -i python
brew install ninja
brew install docbook docbook-xsl fop gnu-sed
# brew install is taking forever on macos-11, skip jing-trang and all it's dependencies.
Expand Down

0 comments on commit 9bdcbcf

Please sign in to comment.