Skip to content

Commit

Permalink
bootstrap: no google cloud on macos CI
Browse files Browse the repository at this point in the history
  • Loading branch information
davidandreoletti committed Mar 14, 2024
1 parent 70b6cb1 commit 1b6bf1c
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions install/bootstrap_apps_gui.sh
Original file line number Diff line number Diff line change
Expand Up @@ -189,10 +189,16 @@ if is_profile_admin_or_similar; then
is_macos && homebrew_brew_cask_install "google-earth-pro" # Google Earth

# Google Cloud SDK
is_macos && homebrew_brew_cask_install "google-cloud-sdk" \
&& homebrew_brew_cask_install "__commit_aggregated__" \
&& source "$(brew --prefix)/Caskroom/google-cloud-sdk/latest/google-cloud-sdk/path.$(basename \"echo $SHELL\").inc" \
&& gcloud components install alpha beta core gsutil bq cloud_sql_proxy datalab
if ci_is_ci; then
# google-cloud-sdk rely on non default python version.
# Bug: it fails to link 2to3
:
else
is_macos && homebrew_brew_cask_install "google-cloud-sdk" \
&& homebrew_brew_cask_install "__commit_aggregated__" \
&& source "$(brew --prefix)/Caskroom/google-cloud-sdk/latest/google-cloud-sdk/path.$(basename \"echo $SHELL\").inc" \
&& gcloud components install alpha beta core gsutil bq cloud_sql_proxy datalab
fi
is_fedora && fedora_dnf_install "google-cloud-cli"

# Traffic shaping
Expand Down

0 comments on commit 1b6bf1c

Please sign in to comment.