[macos] Add exclusion for macOS 13 to the Xamarin test (#8274)

This commit is contained in:
Alexey-Ayupov
2023-09-14 11:21:42 +02:00
committed by GitHub
parent 5ffd15d845
commit 50f1c72a18
+3
View File
@@ -2,6 +2,7 @@ Import-Module "$PSScriptRoot/../helpers/Common.Helpers.psm1"
Import-Module "$PSScriptRoot/../helpers/Tests.Helpers.psm1" -DisableNameChecking
$os = Get-OSVersion
if ((-not $os.IsVentura) -and (-not $os.IsVenturaArm64)) {
$MONO_VERSIONS = Get-ToolsetValue "xamarin.mono-versions"
$XAMARIN_IOS_VERSIONS = Get-ToolsetValue "xamarin.ios-versions"
$XAMARIN_MAC_VERSIONS = Get-ToolsetValue "xamarin.mac-versions"
@@ -298,3 +299,5 @@ Describe "Nuget" -Skip:($os.IsVentura -or $os.IsVenturaArm64) {
Get-Content $env:HOME/.config/NuGet/NuGet.Config | Out-String | Should -Match "nuget.org"
}
}
}