mirror of
https://github.com/open-goal/jak-project
synced 2026-09-01 09:53:12 -04:00
ci: install brotli explicitly on macOS runners (#4392)
Another out of no-where regression on the macOS runners... https://github.com/open-goal/jak-project/actions/runs/32795420246 ``` ld: library 'brotlidec' not found ```
This commit is contained in:
@@ -29,9 +29,9 @@ jobs:
|
||||
HOMEBREW_NO_INSTALL_CLEANUP: 1
|
||||
HOMEBREW_NO_ANALYTICS: 1
|
||||
run: |
|
||||
if ! brew install ninja nasm openssl@3; then
|
||||
if ! brew install ninja nasm openssl@3 brotli; then
|
||||
brew update
|
||||
brew install ninja nasm openssl@3
|
||||
brew install ninja nasm openssl@3 brotli
|
||||
fi
|
||||
# keg-only, so give CMake's FindOpenSSL an explicit hint
|
||||
echo "OPENSSL_ROOT_DIR=$(brew --prefix openssl@3)" >> $GITHUB_ENV
|
||||
|
||||
@@ -39,9 +39,9 @@ jobs:
|
||||
HOMEBREW_NO_INSTALL_CLEANUP: 1
|
||||
HOMEBREW_NO_ANALYTICS: 1
|
||||
run: |
|
||||
if ! brew install ninja nasm openssl@3; then
|
||||
if ! brew install ninja nasm openssl@3 brotli; then
|
||||
brew update
|
||||
brew install ninja nasm openssl@3
|
||||
brew install ninja nasm openssl@3 brotli
|
||||
fi
|
||||
# keg-only, so give CMake's FindOpenSSL an explicit hint
|
||||
echo "OPENSSL_ROOT_DIR=$(brew --prefix openssl@3)" >> $GITHUB_ENV
|
||||
|
||||
Reference in New Issue
Block a user