mirror of
https://github.com/actions/runner-images.git
synced 2025-12-25 02:47:41 +08:00
24 lines
686 B
PowerShell
24 lines
686 B
PowerShell
################################################################################
|
|
## File: Validate-Bazel.ps1
|
|
## Desc: Validate Bazel
|
|
################################################################################
|
|
|
|
if (Get-Command -Name 'bazel')
|
|
{
|
|
Write-Host "bazel on path"
|
|
}
|
|
else
|
|
{
|
|
Write-Host 'bazel is not on path'
|
|
exit 1
|
|
}
|
|
|
|
# Adding description of the software to Markdown
|
|
$SoftwareName = "bazel"
|
|
|
|
$Description = @"
|
|
_Version:_ $(bazel --version)<br/>
|
|
"@
|
|
|
|
Add-SoftwareDetailsToMarkdown -SoftwareName $SoftwareName -DescriptionMarkdown $Description
|
|
Add-SoftwareDetailsToMarkdown -SoftwareName "Test Software" -DescriptionMarkdown "Test Software" |