mirror of
https://github.com/actions/runner-images.git
synced 2025-12-14 13:17:54 +00:00
add sphinx version and remove pollinate
This commit is contained in:
@@ -101,11 +101,10 @@ $toolsList = @(
|
|||||||
(Get-NewmanVersion),
|
(Get-NewmanVersion),
|
||||||
(Get-NvmVersion),
|
(Get-NvmVersion),
|
||||||
(Get-PackerVersion),
|
(Get-PackerVersion),
|
||||||
("Pollinate"),
|
|
||||||
(Get-PhantomJSVersion),
|
(Get-PhantomJSVersion),
|
||||||
(Get-PulumiVersion),
|
(Get-PulumiVersion),
|
||||||
(Get-RVersion),
|
(Get-RVersion),
|
||||||
("Sphinx Open Source Search Server"),
|
(Get-SphinxVersion),
|
||||||
(Get-SwigVersion),
|
(Get-SwigVersion),
|
||||||
(Get-TerraformVersion),
|
(Get-TerraformVersion),
|
||||||
(Get-UnZipVersion),
|
(Get-UnZipVersion),
|
||||||
|
|||||||
@@ -257,3 +257,8 @@ function Get-RVersion {
|
|||||||
$rVersion = R --version | Select-String "R version" | Take-OutputPart -Part -2
|
$rVersion = R --version | Select-String "R version" | Take-OutputPart -Part -2
|
||||||
return "R $rVersion"
|
return "R $rVersion"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function Get-SphinxVersion {
|
||||||
|
$sphinxVersion = searchd | Take-OutputPart -Part 1 | Take-OutputPart -Part 0 -Delimiter "-"
|
||||||
|
return "Sphinx Open Source Search Server $rVersion"
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user