Files
runner-images/images/macos/provision/core/homebrew.sh
Mikhail Timofeev 169953b714 [macOS] Separate xcode command line tools installation & Xcode 12.1 for Big Sur (#1815)
* add retry logic, remove separate macOS11 installation

* move to separate file
2020-10-15 19:00:36 +03:00

20 lines
456 B
Bash
Executable File

#!/bin/bash -e -o pipefail
echo "Installing Homebrew..."
HOMEBREW_INSTALL_URL="https://raw.githubusercontent.com/Homebrew/install/master/install.sh"
/bin/bash -c "$(curl -fsSL ${HOMEBREW_INSTALL_URL})"
echo "Disabling Homebrew analytics..."
brew analytics off
echo "Installing the latest curl..."
brew install curl
echo "Installing wget..."
brew install wget
echo "Installing jq..."
brew install jq
# init brew bundle feature
brew tap Homebrew/bundle