mirror of
https://github.com/actions/runner-images.git
synced 2025-12-15 06:08:07 +00:00
[Ubuntu] Add MediaInfo package (#2188)
See https://github.com/actions/virtual-environments/issues/2185
This commit is contained in:
@@ -102,6 +102,7 @@ $toolsList = @(
|
|||||||
(Get-KubectlVersion),
|
(Get-KubectlVersion),
|
||||||
(Get-KustomizeVersion),
|
(Get-KustomizeVersion),
|
||||||
(Get-LeiningenVersion),
|
(Get-LeiningenVersion),
|
||||||
|
(Get-MediainfoVersion),
|
||||||
(Get-M4Version),
|
(Get-M4Version),
|
||||||
(Get-HGVersion),
|
(Get-HGVersion),
|
||||||
(Get-MinikubeVersion),
|
(Get-MinikubeVersion),
|
||||||
|
|||||||
@@ -157,6 +157,11 @@ function Get-LeiningenVersion {
|
|||||||
return "$(lein -v | Take-OutputPart -Part 0,1)"
|
return "$(lein -v | Take-OutputPart -Part 0,1)"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function Get-MediainfoVersion {
|
||||||
|
$mediainfoVersion = (mediainfo --version | Select-Object -Index 1 | Take-OutputPart -Part 2).Replace('v', '')
|
||||||
|
return "MediaInfo $mediainfoVersion"
|
||||||
|
}
|
||||||
|
|
||||||
function Get-NewmanVersion {
|
function Get-NewmanVersion {
|
||||||
return "Newman $(newman --version)"
|
return "Newman $(newman --version)"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -165,6 +165,7 @@
|
|||||||
"ftp",
|
"ftp",
|
||||||
"jq",
|
"jq",
|
||||||
"m4",
|
"m4",
|
||||||
|
"mediainfo",
|
||||||
"netcat",
|
"netcat",
|
||||||
"parallel",
|
"parallel",
|
||||||
"patchelf",
|
"patchelf",
|
||||||
|
|||||||
@@ -160,6 +160,7 @@
|
|||||||
"ftp",
|
"ftp",
|
||||||
"jq",
|
"jq",
|
||||||
"m4",
|
"m4",
|
||||||
|
"mediainfo",
|
||||||
"netcat",
|
"netcat",
|
||||||
"parallel",
|
"parallel",
|
||||||
"patchelf",
|
"patchelf",
|
||||||
|
|||||||
@@ -134,6 +134,7 @@
|
|||||||
"ftp",
|
"ftp",
|
||||||
"jq",
|
"jq",
|
||||||
"m4",
|
"m4",
|
||||||
|
"mediainfo",
|
||||||
"netcat",
|
"netcat",
|
||||||
"parallel",
|
"parallel",
|
||||||
"patchelf",
|
"patchelf",
|
||||||
|
|||||||
Reference in New Issue
Block a user