mirror of
https://github.com/actions/runner-images.git
synced 2025-12-28 12:48:21 +08:00
move source code to public
This commit is contained in:
24
images/macos/provision/core/homebrew.sh
Executable file
24
images/macos/provision/core/homebrew.sh
Executable file
@@ -0,0 +1,24 @@
|
||||
#!/bin/sh
|
||||
echo "Installing Homebrew..."
|
||||
|
||||
source ~/utils/utils.sh
|
||||
|
||||
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 last version of curl
|
||||
brew install curl
|
||||
|
||||
echo Installing wget...
|
||||
brew install wget
|
||||
|
||||
echo Installing jq
|
||||
brew install jq
|
||||
|
||||
# init brew bundle feature
|
||||
brew tap Homebrew/bundle
|
||||
Reference in New Issue
Block a user