mirror of
https://github.com/actions/runner-images-sangeeth.git
synced 2025-12-20 06:29:50 +00:00
9 lines
318 B
PowerShell
9 lines
318 B
PowerShell
$os = Get-OSVersion
|
|
|
|
Describe "Clang/LLVM" {
|
|
It "Clang/LLVM is installed and version is correct" {
|
|
$toolsetVersion = Get-ToolsetValue 'llvm.version'
|
|
$clangVersion = & "$(brew --prefix llvm@$toolsetVersion)/bin/clang" --version
|
|
$clangVersion[0] | Should -BeLike "*${toolsetVersion}*"
|
|
}
|
|
} |