dncurrency/ci/prepare/macos/prepare.sh
2024-10-03 18:28:30 +02:00

13 lines
No EOL
375 B
Bash
Executable file

#!/bin/bash
set -euox pipefail
# Homebrew randomly fails to update. Retry 5 times with 15s interval
for i in {1..5}; do brew update && break || { echo "Update failed, retrying..."; sleep 15; }; done
brew install coreutils
brew install qt@5
brew link qt@5
# Workaround: https://github.com/Homebrew/homebrew-core/issues/8392
echo "$(brew --prefix qt@5)/bin" >> $GITHUB_PATH