mirror of
https://github.com/actions/runner-images-sangeeth.git
synced 2025-12-20 06:29:50 +00:00
20 lines
580 B
PowerShell
20 lines
580 B
PowerShell
################################################################################
|
|
## File: Validate-GoogleCloudSDK.ps1
|
|
## Desc: Validate Install Google Cloud SDK for Windows
|
|
################################################################################
|
|
|
|
# Simple validation gcloud, gsutil, and bq command line tools
|
|
$validateTools = @("bq", "gcloud", "gsutil")
|
|
foreach($tool in $validateTools)
|
|
{
|
|
if (Get-Command -Name $tool)
|
|
{
|
|
Write-Host "$tool on path"
|
|
}
|
|
else
|
|
{
|
|
Write-Host "$tool is not on path"
|
|
exit 1
|
|
}
|
|
}
|