mirror of
https://github.com/actions/runner-images.git
synced 2025-12-14 05:07:02 +00:00
[Ubuntu] Install zstd homebrew (#3181)
* install zstd using brew * fix typo * remove Run-Command * replace to Take-OutputPart * create zstd symlinks
This commit is contained in:
committed by
GitHub
parent
16fd521369
commit
b04de88f6e
@@ -263,3 +263,8 @@ function Get-SphinxVersion {
|
||||
function Get-YamllintVersion {
|
||||
return "$(yamllint --version)"
|
||||
}
|
||||
|
||||
function Get-ZstdVersion {
|
||||
$zstdVersion = zstd --version | Take-OutputPart -Part 1 -Delimiter "v" | Take-OutputPart -Part 0 -Delimiter ","
|
||||
return "zstd $zstdVersion (homebrew)"
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user