Files
runner-images/images/windows/scripts/build/Install-ChocolateyPackages.ps1
kishorekumar-anchala 68d05af296 [windows] Pin the cmake version to 3.31.6 (#11936)
* [windows] Pin the cmake version to 3.31.6

* [windows] adjust  choco script

* Fix choco build failure

* Add version parameter to choco script
2025-04-05 23:37:45 -06:00

13 lines
494 B
PowerShell

################################################################################
## File: Install-ChocolateyPackages.ps1
## Desc: Install common Chocolatey packages
################################################################################
$commonPackages = (Get-ToolsetContent).choco.common_packages
foreach ($package in $commonPackages) {
Install-ChocoPackage $package.name -Version $package.version -ArgumentList $package.args
}
Invoke-PesterTests -TestFile "ChocoPackages"