Files
runner-images/images/windows/scripts/build/Install-GoogleCloudCLI.ps1
T

13 lines
734 B
PowerShell
Raw Normal View History

2020-06-24 11:37:36 +03:00
################################################################################
2023-09-20 16:32:41 +02:00
## File: Install-GoogleCloudCLI.ps1
## Desc: Install Google Cloud CLI
2020-06-24 11:37:36 +03:00
################################################################################
# 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") `
-ExpectedSubject 'CN=Google LLC, O=Google LLC, L=Mountain View, S=California, C=US, SERIALNUMBER=3582691, OID.2.5.4.15=Private Organization, OID.1.3.6.1.4.1.311.60.2.1.2=Delaware, OID.1.3.6.1.4.1.311.60.2.1.3=US'
2020-07-10 14:29:54 +03:00
2023-09-20 16:32:41 +02:00
Invoke-PesterTests -TestFile "Tools" -TestName "GoogleCloudCLI"