mirror of
https://github.com/actions/runner-images.git
synced 2025-12-14 13:17:54 +00:00
* [windows] Pin the cmake version to 3.31.6 * [windows] adjust choco script * Fix choco build failure * Add version parameter to choco script
13 lines
494 B
PowerShell
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"
|