mirror of
https://github.com/actions/runner-images.git
synced 2025-12-15 06:08:07 +00:00
12 lines
628 B
PowerShell
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"
|