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