[Ubuntu] update zstd version (#6681)

This commit is contained in:
Alexey-Ayupov
2022-12-29 23:33:04 +01:00
committed by GitHub
parent 39ba239618
commit f7f519dcc4
10 changed files with 39 additions and 55 deletions

View File

@@ -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" {