Files
runner-images/images/windows/scripts/build/Install-GoogleCloudCLI.ps1
2024-06-19 16:09:56 +02:00

13 lines
583 B
PowerShell

################################################################################
## File: Install-GoogleCloudCLI.ps1
## Desc: Install Google Cloud CLI
################################################################################
# https://cloud.google.com/sdk/docs/downloads-interactive
Install-Binary `
-Url 'https://dl.google.com/dl/cloudsdk/channels/rapid/GoogleCloudSDKInstaller.exe' `
-InstallArgs @("/S", "/allusers", "/noreporting") `
-ExpectedSignature '607A3EDAA64933E94422FC8F0C80388E0590986C'
Invoke-PesterTests -TestFile "Tools" -TestName "GoogleCloudCLI"