Files
runner-images/images/win/scripts/Installers/Install-GoogleCloudSDK.ps1
2020-08-27 18:34:37 +03:00

12 lines
628 B
PowerShell

################################################################################
## File: Install-GoogleCloudSDK.ps1
## Desc: Install Google Cloud SDK
################################################################################
# https://cloud.google.com/sdk/docs/downloads-interactive
$googleCloudSDKInstaller = "https://dl.google.com/dl/cloudsdk/channels/rapid/GoogleCloudSDKInstaller.exe"
$argumentList = @("/S", "/allusers", "/noreporting")
Install-Binary -Url $googleCloudSDKInstaller -Name "GoogleCloudSDKInstaller.exe" -ArgumentList $argumentList
Invoke-PesterTests -TestFile "Tools" -TestName "GoogleCloudSDK"