mirror of
https://github.com/actions/runner-images.git
synced 2025-12-14 22:05:17 +00:00
11 lines
528 B
PowerShell
11 lines
528 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"
|