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