mirror of
https://github.com/actions/runner-images.git
synced 2025-12-20 06:35:47 +00:00
Bring latest changes from internal Mac-Cloud repository from 21 September
This commit is contained in:
@@ -91,4 +91,17 @@ function Get-XcodePairsList {
|
||||
$result += "$watchName $phoneName"
|
||||
}
|
||||
return $result
|
||||
}
|
||||
|
||||
function Test-XcodeStableVersion {
|
||||
param([Parameter(Mandatory)][string]$Version)
|
||||
|
||||
if ($Version -match "beta") {
|
||||
return $false
|
||||
}
|
||||
if ($Version -match "GM") {
|
||||
return $false
|
||||
}
|
||||
|
||||
return $true
|
||||
}
|
||||
Reference in New Issue
Block a user