Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion mac_pw_pool/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -79,13 +79,18 @@ grep -q homebrew /etc/paths || \
. /etc/profile

msg "Installing podman-machine, testing, and CI deps. (~5-10m install time)"
# Make brew non-interactive for automated setup
export HOMEBREW_NO_ASK=1
brew update
brew trust aws/aws

if [[ ! -x /usr/local/bin/gvproxy ]]; then
declare -a brew_taps
declare -a brew_formulas

brew_taps=(
# Required to use upstream krunkit
slp/krun
libkrun/krun
)

brew_formulas=(
Expand All @@ -112,6 +117,7 @@ if [[ ! -x /usr/local/bin/gvproxy ]]; then

for brew_tap in "${brew_taps[@]}"; do
brew tap $brew_tap
brew trust $brew_tap
done

brew install "${brew_formulas[@]}"
Expand Down