mirror of
https://github.com/actions/runner-images.git
synced 2025-12-14 05:07:02 +00:00
13 lines
583 B
PowerShell
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"
|