mirror of
https://github.com/actions/runner-images.git
synced 2025-12-20 06:35:47 +00:00
14 lines
763 B
PowerShell
14 lines
763 B
PowerShell
################################################################################
|
|
## File: Install-GoogleCloudCLI.ps1
|
|
## Desc: Install Google Cloud CLI
|
|
################################################################################
|
|
|
|
# https://cloud.google.com/sdk/docs/downloads-interactive
|
|
$googleCloudCLIInstaller = "https://dl.google.com/dl/cloudsdk/channels/rapid/GoogleCloudSDKInstaller.exe"
|
|
$argumentList = @("/S", "/allusers", "/noreporting")
|
|
$googleCloudCLISignatureThumbprint = "2673EA6CC23BEFFDA49AC715B121544098A1284C"
|
|
|
|
Install-Binary -Url $googleCloudCLIInstaller -Name "GoogleCloudSDKInstaller.exe" -ArgumentList $argumentList -ExpectedSignature $googleCloudCLISignatureThumbprint
|
|
|
|
Invoke-PesterTests -TestFile "Tools" -TestName "GoogleCloudCLI"
|