mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-16 18:40:28 +00:00
16 lines
582 B
Bash
16 lines
582 B
Bash
brew update
|
|
|
|
##########################################
|
|
## workaround for cmake already being installed in the github runners
|
|
if ! command -v cmake &>/dev/null ; then
|
|
brew install cmake
|
|
fi
|
|
##########################################
|
|
|
|
brew install openssl@1.1 readline boost bash-completion curl unzip mysql ccache
|
|
|
|
##########################################
|
|
## workaround to fix openssl in ci until https://github.com/actions/virtual-environments/pull/4206 is merged
|
|
ln -sf $(brew --cellar openssl@1.1)/1.1.1* /usr/local/opt/openssl
|
|
##########################################
|