mirror of
https://github.com/actions/runner-images.git
synced 2025-12-15 06:08:07 +00:00
[Ubuntu] update zstd version (#6681)
This commit is contained in:
@@ -220,6 +220,16 @@ Describe "Terraform" {
|
||||
}
|
||||
}
|
||||
|
||||
Describe "Zstd" {
|
||||
It "zstd" {
|
||||
"zstd --version" | Should -ReturnZeroExitCode
|
||||
}
|
||||
|
||||
It "pzstd" {
|
||||
"pzstd --version" | Should -ReturnZeroExitCode
|
||||
}
|
||||
}
|
||||
|
||||
Describe "Vcpkg" {
|
||||
It "vcpkg" {
|
||||
"vcpkg version" | Should -ReturnZeroExitCode
|
||||
@@ -257,23 +267,9 @@ Describe "HHVM" -Skip:(Test-IsUbuntu22) {
|
||||
}
|
||||
|
||||
Describe "Homebrew" {
|
||||
$brewToolset = (Get-ToolsetContent).brew
|
||||
$testCases = $brewToolset | ForEach-Object { @{brewName = $_.name; brewCommand = $_.command} }
|
||||
|
||||
It "homebrew" {
|
||||
"/home/linuxbrew/.linuxbrew/bin/brew --version" | Should -ReturnZeroExitCode
|
||||
}
|
||||
|
||||
It "zstd has /usr/local/bin symlink" {
|
||||
"/usr/local/bin/zstd" | Should -Exist
|
||||
}
|
||||
|
||||
It "homebrew package <brewName>" -TestCases $testCases {
|
||||
$brewPrefix = /home/linuxbrew/.linuxbrew/bin/brew --prefix $brewName
|
||||
$brewPackage = Join-Path $brewPrefix "bin" $brewCommand
|
||||
|
||||
"$brewPackage --version" | Should -ReturnZeroExitCode
|
||||
}
|
||||
}
|
||||
|
||||
Describe "Julia" {
|
||||
|
||||
Reference in New Issue
Block a user