remove boost from windows images (#2843)

This commit is contained in:
Mikhail Timofeev
2021-03-05 10:22:59 +03:00
committed by GitHub
parent adcbf9592c
commit c6ba1f00df
5 changed files with 1 additions and 68 deletions

View File

@@ -35,9 +35,6 @@ $toolsEnvironmentVariables = @{
"{0}\Scripts"
)
}
Boost = @{
variableTemplate = "BOOST_ROOT_{0}_{1}_{2}"
}
go = @{
pathTemplates = @(
"{0}\bin"
@@ -46,7 +43,7 @@ $toolsEnvironmentVariables = @{
}
}
$toolsToConfigure = @("Python", "Boost", "Go")
$toolsToConfigure = @("Python", "Go")
$tools = Get-ToolsetContent | Select-Object -ExpandProperty toolcache `
| Where-Object { $toolsToConfigure -contains $_.name }