mirror of
https://github.com/actions/runner-images.git
synced 2025-12-14 22:05:17 +00:00
[MacOS] Add R to macOS images (#4996)
* Add R to macOS images * Remove redundant already existing functions and tests
This commit is contained in:
@@ -48,14 +48,9 @@ $languageAndRuntimeList = @(
|
||||
(Get-ClangLLVMVersion)
|
||||
(Get-GccVersion)
|
||||
(Get-FortranVersion)
|
||||
(Get-RVersion)
|
||||
)
|
||||
|
||||
if ($os.IsCatalina) {
|
||||
$languageAndRuntimeList += @(
|
||||
(Get-RVersion)
|
||||
)
|
||||
}
|
||||
|
||||
# To sort GCC and Gfortran correctly, we need to use natural sort https://gist.github.com/markwragg/e2a9dc05f3464103d6998298fb575d4e#file-sort-natural-ps1
|
||||
$toNatural = { [regex]::Replace($_, '\d+', { $args[0].Value.PadLeft(20) }) }
|
||||
$markdown += New-MDList -Style Unordered -Lines ($languageAndRuntimeList | Sort-Object $toNatural)
|
||||
|
||||
Reference in New Issue
Block a user