mirror of
https://github.com/actions/runner-images.git
synced 2025-12-20 06:35:47 +00:00
Merge remote-tracking branch 'upstream/main' into main
This commit is contained in:
@@ -53,4 +53,10 @@ Describe "Hub CLI" {
|
||||
It "hub is installed" {
|
||||
"hub --version" | Should -ReturnZeroExitCode
|
||||
}
|
||||
}
|
||||
|
||||
Describe "Azure Dev Spaces CLI" {
|
||||
It "Azure Dev Spaces CLI" {
|
||||
"azds --version" | Should -ReturnZeroExitCode
|
||||
}
|
||||
}
|
||||
@@ -41,6 +41,15 @@ Describe "CMake" {
|
||||
}
|
||||
}
|
||||
|
||||
Describe "CodeQLBundle" {
|
||||
It "CodeQLBundle" {
|
||||
$CodeQLVersionsWildcard = Join-Path $Env:AGENT_TOOLSDIRECTORY -ChildPath "codeql" | Join-Path -ChildPath "*"
|
||||
$CodeQLVersionPath = Get-ChildItem $CodeQLVersionsWildcard | Select-Object -First 1 -Expand FullName
|
||||
$CodeQLPath = Join-Path $CodeQLVersionPath -ChildPath "x64" | Join-Path -ChildPath "codeql" | Join-Path -ChildPath "codeql.exe"
|
||||
"$CodeQLPath version" | Should -ReturnZeroExitCode
|
||||
}
|
||||
}
|
||||
|
||||
Describe "R" {
|
||||
It "Rscript" {
|
||||
"Rscript --version" | Should -ReturnZeroExitCode
|
||||
|
||||
Reference in New Issue
Block a user