mirror of
https://github.com/actions/runner-images-sangeeth.git
synced 2025-12-15 22:36:46 +00:00
* Move choco installation list into toolset * Add a condition to Install-CommonUtils.ps1 * Rename tests and revert Bazel to single script * Return Install-Bazel.ps1 to windows2016.json and windows2019.json * Remove condition and Write-Host command from Install-CommonUtils.ps1 * Reset Install-Bazel.ps1 to be the same as in main * Update choco.common_packages in toolset-2016.json and toolset-2019.json Co-authored-by: Nikita Bykov <v-nibyko@microsoft.com>
99 lines
1.6 KiB
PowerShell
99 lines
1.6 KiB
PowerShell
Describe "7-Zip" {
|
|
It "7z" {
|
|
"7z" | Should -ReturnZeroExitCode
|
|
}
|
|
}
|
|
|
|
Describe "AzCopy" {
|
|
It "AzCopy" {
|
|
"azcopy --version" | Should -ReturnZeroExitCode
|
|
}
|
|
}
|
|
|
|
Describe "Bicep" {
|
|
It "Bicep" {
|
|
"bicep --version" | Should -ReturnZeroExitCode
|
|
}
|
|
}
|
|
|
|
Describe "GitVersion" {
|
|
It "gitversion is installed" {
|
|
"gitversion /version" | Should -ReturnZeroExitCode
|
|
}
|
|
}
|
|
|
|
Describe "InnoSetup" {
|
|
It "InnoSetup" {
|
|
(Get-Command -Name iscc).CommandType | Should -BeExactly "Application"
|
|
}
|
|
}
|
|
|
|
Describe "Jq" {
|
|
It "Jq" {
|
|
"jq -n ." | Should -ReturnZeroExitCode
|
|
}
|
|
}
|
|
|
|
Describe "Nuget" {
|
|
It "Nuget" {
|
|
"nuget" | Should -ReturnZeroExitCode
|
|
}
|
|
}
|
|
|
|
Describe "OpenSSL" {
|
|
It "OpenSSL" {
|
|
"openssl version" | Should -ReturnZeroExitCode
|
|
}
|
|
}
|
|
|
|
Describe "Packer" {
|
|
It "Packer" {
|
|
"packer --version" | Should -ReturnZeroExitCode
|
|
}
|
|
}
|
|
|
|
Describe "Perl" {
|
|
It "Perl" {
|
|
"perl --version" | Should -ReturnZeroExitCode
|
|
}
|
|
}
|
|
|
|
Describe "Pulumi" {
|
|
It "pulumi" {
|
|
"pulumi version" | Should -ReturnZeroExitCode
|
|
}
|
|
}
|
|
|
|
Describe "Svn" {
|
|
It "svn" {
|
|
"svn --version --quiet" | Should -ReturnZeroExitCode
|
|
}
|
|
}
|
|
|
|
Describe "Swig" {
|
|
It "Swig" {
|
|
"swig -version" | Should -ReturnZeroExitCode
|
|
}
|
|
}
|
|
|
|
Describe "VSWhere" {
|
|
It "vswhere" {
|
|
"vswhere" | Should -ReturnZeroExitCode
|
|
}
|
|
}
|
|
|
|
Describe "Julia" {
|
|
It "Julia path exists" {
|
|
"C:\Julia" | Should -Exist
|
|
}
|
|
|
|
It "Julia" {
|
|
"julia --version" | Should -ReturnZeroExitCode
|
|
}
|
|
}
|
|
|
|
Describe "CMake" {
|
|
It "cmake" {
|
|
"cmake --version" | Should -ReturnZeroExitCode
|
|
}
|
|
} |