mirror of
https://github.com/actions/runner-images-sangeeth.git
synced 2025-12-20 06:29:50 +00:00
[Ubuntu] Get rid of simple apt-get provisioners (#2376)
* move 7z installation to basic.sh * remove build essential * move imagemagick to apt * move subversion to apt * move subversion to apt * move sphinxsearch to apt * move swig to apt * move pollinate to apt * move haveged to apt * add p7zip to ubuntu 16
This commit is contained in:
@@ -9,6 +9,21 @@ Describe "Apt" {
|
||||
}
|
||||
|
||||
It "<toolName> is available" -TestCases $testCases {
|
||||
if ($toolName -eq "p7zip-full")
|
||||
{
|
||||
$toolName = "p7zip"
|
||||
}
|
||||
|
||||
if ($toolName -eq "subversion")
|
||||
{
|
||||
$toolName = "svn"
|
||||
}
|
||||
|
||||
if ($toolName -eq "sphinxsearch")
|
||||
{
|
||||
$toolName = "searchd"
|
||||
}
|
||||
|
||||
(Get-Command -Name $toolName).CommandType | Should -BeExactly "Application"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user