mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-02-07 21:01:37 +00:00
* chore(CI): Make some changes. Less CI's maybe better... * pendingsql * FORK TEST - TO BE REVERTED * changes * test * fix * Revert "FORK TEST - TO BE REVERTED" This reverts commit 875bc281c5a355cce2ddd8015484e256dbc185cf. * rename workflow * rename workflow * rename workflow * rename workflow * I argue windows don't need dry runs * maybe mac wants to be alive. who knows. When do we drop mac support really...?
30 lines
1.0 KiB
Bash
30 lines
1.0 KiB
Bash
##########################################
|
|
## workaround for python upgrade issue https://github.com/actions/runner-images/issues/6817
|
|
rm /usr/local/bin/2to3 || true
|
|
rm /usr/local/bin/2to3-3.10 || true
|
|
rm /usr/local/bin/2to3-3.11 || true
|
|
rm /usr/local/bin/idle3 || true
|
|
rm /usr/local/bin/idle3.10 || true
|
|
rm /usr/local/bin/idle3.11 || true
|
|
rm /usr/local/bin/pydoc3 || true
|
|
rm /usr/local/bin/pydoc3.10 || true
|
|
rm /usr/local/bin/pydoc3.11 || true
|
|
rm /usr/local/bin/python3 || true
|
|
rm /usr/local/bin/python3.10 || true
|
|
rm /usr/local/bin/python3.11 || true
|
|
rm /usr/local/bin/python3-config || true
|
|
rm /usr/local/bin/python3.10-config || true
|
|
rm /usr/local/bin/python3.11-config || true
|
|
##########################################
|
|
|
|
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@3 readline boost bash-completion curl unzip mysql@8.1 ccache
|