mirror of
https://github.com/actions/runner-images.git
synced 2025-12-19 08:22:12 +00:00
7 lines
250 B
PowerShell
7 lines
250 B
PowerShell
Describe "Clang/LLVM" {
|
|
It "Clang/LLVM installed and version is correct" {
|
|
$toolsetVersion = (Get-ToolsetContent).llvm.version
|
|
$clangVersion = clang --version
|
|
$clangVersion[0] | Should -BeLike "*${toolsetVersion}*"
|
|
}
|
|
} |