mirror of
https://github.com/actions/runner-images.git
synced 2025-12-15 06:08:07 +00:00
33 lines
764 B
Bash
Executable File
33 lines
764 B
Bash
Executable File
#!/bin/bash -e -o pipefail
|
|
|
|
source ~/utils/utils.sh
|
|
|
|
arch=$(get_arch)
|
|
|
|
echo "Installing Homebrew..."
|
|
HOMEBREW_INSTALL_URL="https://raw.githubusercontent.com/Homebrew/install/master/install.sh"
|
|
/bin/bash -c "$(curl -fsSL ${HOMEBREW_INSTALL_URL})"
|
|
|
|
if [[ $arch == "arm64" ]]; then
|
|
/opt/homebrew/bin/brew update
|
|
/opt/homebrew/bin/brew upgrade
|
|
/opt/homebrew/bin/brew upgrade --cask
|
|
/opt/homebrew/bin/brew cleanup
|
|
eval "$(/opt/homebrew/bin/brew shellenv)"
|
|
fi
|
|
|
|
echo "Disabling Homebrew analytics..."
|
|
brew analytics off
|
|
|
|
# jq is required for further installation scripts
|
|
echo "Installing jq..."
|
|
brew install jq
|
|
|
|
echo "Installing curl..."
|
|
brew install curl
|
|
|
|
echo "Installing wget..."
|
|
brew_smart_install "wget"
|
|
|
|
# init brew bundle feature
|
|
brew tap Homebrew/bundle |