Skip to content

Commit

Permalink
fix(ci): deal with gha macos homebrew symlink bug
Browse files Browse the repository at this point in the history
  • Loading branch information
fdintino committed Jul 3, 2024
1 parent 014456c commit 33cdaf3
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/macos-install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,12 @@

set -e

brew reinstall cmake
# See https://github.com/actions/runner-images/issues/9471 for why we have
# brew unlink and brew link commands here
brew unlink cmake || true
brew reinstall cmake || true
brew link --overwrite cmake

brew install dav1d aom rav1e

if [ "$GHA_PYTHON_VERSION" == "2.7" ]; then
Expand Down

0 comments on commit 33cdaf3

Please sign in to comment.