mirror of
https://github.com/actions/runner-images-sangeeth.git
synced 2025-12-15 22:36:46 +00:00
11 lines
529 B
PowerShell
11 lines
529 B
PowerShell
################################################################################
|
|
## File: Install-LLVM.ps1
|
|
## Desc: Install the latest stable version of llvm and clang compilers
|
|
################################################################################
|
|
|
|
$llvmVersion = (Get-ToolsetContent).llvm.version
|
|
$latestChocoVersion = Get-LatestChocoPackageVersion -TargetVersion $llvmVersion -PackageName "llvm"
|
|
Choco-Install -PackageName llvm -ArgumentList '--version', $latestChocoVersion
|
|
|
|
Invoke-PesterTests -TestFile "LLVM"
|