mirror of
https://github.com/actions/runner-images.git
synced 2025-12-12 03:57:32 +00:00
* [macOS] Refactor Common.Helpers * Update readme file * Remove unnecessary double quotes --------- Co-authored-by: Alexey Ayupov <“alexey.ayupov@akvelon.com”>
13 lines
402 B
PowerShell
13 lines
402 B
PowerShell
Import-Module "$PSScriptRoot/../helpers/Common.Helpers.psm1"
|
|
|
|
Describe "Clang/LLVM" {
|
|
BeforeAll {
|
|
$toolsetVersion = (Get-ToolsetContent).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}*"
|
|
}
|
|
}
|