mirror of
https://github.com/actions/runner-images.git
synced 2025-12-19 08:22:12 +00:00
10 lines
337 B
PowerShell
10 lines
337 B
PowerShell
Describe "Clang/LLVM" {
|
|
BeforeAll {
|
|
$toolsetVersion = Get-ToolsetValue 'llvm.version'
|
|
}
|
|
|
|
It "Clang/LLVM <toolsetVersion> is installed and version is correct" {
|
|
$clangVersion = & "$(brew --prefix llvm@$toolsetVersion)/bin/clang" --version
|
|
$clangVersion[0] | Should -BeLike "*${toolsetVersion}*"
|
|
}
|
|
} |