Skip to content

Commit

Permalink
[VideoToolbox] Add support for Xcode13 beta5. (#12466)
Browse files Browse the repository at this point in the history

Co-authored-by: Rolf Bjarne Kvinge <[email protected]>
  • Loading branch information
mandel-macaque and rolfbjarne authored Aug 19, 2021
1 parent 048bee7 commit 509b099
Show file tree
Hide file tree
Showing 6 changed files with 84 additions and 45 deletions.
36 changes: 36 additions & 0 deletions src/VideoToolbox/VTVideoEncoder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,26 @@ static public VTVideoEncoder [] GetEncoderList ()
#endif
public bool SupportsFrameReordering { get; private set; }

#if !NET
[NoiOS, NoTV, MacCatalyst (15,0), NoMac, NoWatch]
#else
[UnsupportedOSPlatform ("ios")]
[UnsupportedOSPlatform ("tvos")]
[SupportedOSPlatform ("maccatalyst15.0")]
[UnsupportedOSPlatform ("macos")]
#endif
public bool SupportsMultiPass { get; private set; }

#if !NET
[iOS (15,0), TV (15,0), MacCatalyst (15,0), Mac (12,0), Watch (8,0)]
#else
[SupportedOSPlatform ("ios15.0")]
[SupportedOSPlatform ("tvos15.0")]
[SupportedOSPlatform ("maccatalyst15.0")]
[SupportedOSPlatform ("macos12.0")]
#endif
public bool IncludeStandardDefinitionDVEncoders { get; private set; }

internal VTVideoEncoder (NSDictionary dict)
{
CodecType = (dict [VTVideoEncoderList.CodecType] as NSNumber).Int32Value;
Expand Down Expand Up @@ -164,6 +184,22 @@ internal VTVideoEncoder (NSDictionary dict)
var sfr = dict [constant] as NSNumber;
SupportsFrameReordering = sfr == null ? true : sfr.BoolValue; // optional, default true
}

// added in xcode 13
constant = VTVideoEncoderList.IncludeStandardDefinitionDVEncoders;
if (constant != null) {
var includeDef = dict [constant] as NSNumber;
IncludeStandardDefinitionDVEncoders = includeDef == null ? false : includeDef.BoolValue; // optional, default false
}

#if __MACCATALYST__
constant = VTVideoEncoderList.SupportsMultiPass;
if (constant != null) {
var multiPass = dict [constant] as NSNumber;
SupportsMultiPass = multiPass == null ? false : multiPass.BoolValue; // optional, default false
}
#endif

}

#if NET
Expand Down
48 changes: 48 additions & 0 deletions src/videotoolbox.cs
Original file line number Diff line number Diff line change
Expand Up @@ -214,6 +214,22 @@ interface VTCompressionPropertyKey {
[MacCatalyst (14,5)]
[Field ("kVTVideoEncoderSpecification_EnableLowLatencyRateControl")]
NSString EnableLowLatencyRateControl { get; }

[TV (15, 0), Mac (12, 0), iOS (15, 0), MacCatalyst (15,0)]
[Field ("kVTCompressionPropertyKey_BaseLayerBitRateFraction")]
NSString BaseLayerBitRateFraction { get; }

[TV (15, 0), Mac (12, 0), iOS (15, 0), MacCatalyst (15,0)]
[Field ("kVTCompressionPropertyKey_EnableLTR")]
NSString EnableLtr { get; }

[TV (15, 0), Mac (12, 0), iOS (15, 0), MacCatalyst (15,0)]
[Field ("kVTCompressionPropertyKey_MaxAllowedFrameQP")]
NSString MaxAllowedFrameQP { get; }

[TV (15, 0), Mac (12, 0), iOS (15, 0), MacCatalyst (15,0)]
[Field ("kVTCompressionPropertyKey_SupportsBaseFrameQP")]
NSString SupportsBaseFrameQP { get; }
}

[Mac (10,15), iOS (13,0), TV (13,0)]
Expand Down Expand Up @@ -485,6 +501,14 @@ interface VTProfileLevelKeys {
[Mac (10,9)]
NSString H264_High_AutoLevel { get; }

[TV (15,0), Mac (12,0), iOS (15,0), MacCatalyst (15,0)]
[Field ("kVTProfileLevel_H264_ConstrainedBaseline_AutoLevel")]
NSString H264_ConstrainedBaseline_AutoLevel { get; }

[TV (15,0), Mac (12,0), iOS (15,0), MacCatalyst (15,0)]
[Field ("kVTProfileLevel_H264_ConstrainedHigh_AutoLevel")]
NSString H264_ConstrainedHigh_AutoLevel { get; }

// MP4V

[Field ("kVTProfileLevel_MP4V_Simple_L0")]
Expand Down Expand Up @@ -608,6 +632,22 @@ interface VTEncodeFrameOptionKey {

[Field ("kVTEncodeFrameOptionKey_ForceKeyFrame")]
NSString ForceKeyFrame { get; }

[TV (15,0), Mac (12,0), iOS (15,0), MacCatalyst (15,0)]
[Field ("kVTEncodeFrameOptionKey_AcknowledgedLTRTokens")]
NSString AcknowledgedLtrTokens { get; }

[TV (15,0), Mac (12,0), iOS (15,0), MacCatalyst (15,0)]
[Field ("kVTEncodeFrameOptionKey_BaseFrameQP")]
NSString BaseFrameQP { get; }

[TV (15,0), Mac (12,0), iOS (15,0), MacCatalyst (15,0)]
[Field ("kVTEncodeFrameOptionKey_ForceLTRRefresh")]
NSString ForceLtrRefresh { get; }

[TV (15,0), Mac (12,0), iOS (15,0), MacCatalyst (15,0)]
[Field ("kVTSampleAttachmentKey_RequireLTRAcknowledgementToken")]
NSString RequireLtrAcknowledgementToken { get; }
}

[iOS (8,0), TV (10,2)]
Expand Down Expand Up @@ -1004,6 +1044,14 @@ interface VTVideoEncoderList {
[Field ("kVTVideoEncoderList_SupportsFrameReordering")]
NSString SupportsFrameReordering { get; }

[NoTV, NoMac, NoiOS, MacCatalyst (15,0)]
[Field ("kVTVideoEncoderList_SupportsMultiPass")]
NSString SupportsMultiPass { get; }

[TV (15,0), Mac (12,0), iOS (15,0), MacCatalyst (15,0)]
[Field ("kVTVideoEncoderListOption_IncludeStandardDefinitionDVEncoders")]
NSString IncludeStandardDefinitionDVEncoders { get; }

// VTVideoEncoder.cs should be updated when new constants are added here
// some are missing https://github.com/xamarin/xamarin-macios/issues/9904
}
Expand Down
12 changes: 0 additions & 12 deletions tests/xtro-sharpie/MacCatalyst-VideoToolbox.todo

This file was deleted.

11 changes: 0 additions & 11 deletions tests/xtro-sharpie/iOS-VideoToolbox.todo

This file was deleted.

11 changes: 0 additions & 11 deletions tests/xtro-sharpie/macOS-VideoToolbox.todo

This file was deleted.

11 changes: 0 additions & 11 deletions tests/xtro-sharpie/tvOS-VideoToolbox.todo

This file was deleted.

5 comments on commit 509b099

@vs-mobiletools-engineering-service2
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

❌ [CI Build] Tests failed on Build ❌

Tests failed on Build.

API diff

✅ API Diff from stable

View API diff

API & Generator diff

ℹ️ API Diff (from PR only) (please review changes)
ℹ️ Generator Diff (please review changes)

Packages generated

View packages

Test results

154 tests failed, 96 tests passed.

Failed tests

  • monotouch-test/Mac Catalyst/Debug [dotnet]: Failed (Tests run: 2638 Passed: 2489 Inconclusive: 35 Failed: 1 Ignored: 148)
  • monotouch-test/iOS Unified 64-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 890.18 MB left of 1024 MB required)
  • monotouch-test/iOS Unified 64-bits - simulator/Debug [dotnet]: Failed (Not enough space on the root drive '/': 890.06 MB left of 1024 MB required)
  • monotouch-test/iOS Unified 64-bits - simulator/Debug (LinkSdk): Failed (Not enough space on the root drive '/': 889.93 MB left of 1024 MB required)
  • monotouch-test/iOS Unified 64-bits - simulator/Debug (static registrar): Failed (Not enough space on the root drive '/': 889.93 MB left of 1024 MB required)
  • monotouch-test/iOS Unified 64-bits - simulator/Release (all optimizations): Failed (Not enough space on the root drive '/': 889.96 MB left of 1024 MB required)
  • monotouch-test/iOS Unified 64-bits - simulator/Debug (all optimizations): Failed (Not enough space on the root drive '/': 890.01 MB left of 1024 MB required)
  • monotouch-test/iOS Unified 64-bits - simulator/Debug (LinkSdk) [dotnet]: Failed (Not enough space on the root drive '/': 890.01 MB left of 1024 MB required)
  • monotouch-test/iOS Unified 64-bits - simulator/Debug (static registrar) [dotnet]: Failed (Not enough space on the root drive '/': 890 MB left of 1024 MB required)
  • monotouch-test/iOS Unified 64-bits - simulator/Release (all optimizations) [dotnet]: Failed (Not enough space on the root drive '/': 890 MB left of 1024 MB required)
  • monotouch-test/iOS Unified 64-bits - simulator/Debug (all optimizations) [dotnet]: Failed (Not enough space on the root drive '/': 890 MB left of 1024 MB required)
  • monotouch-test/tvOS - simulator/Debug: Failed (Not enough space on the root drive '/': 889.99 MB left of 1024 MB required)
  • monotouch-test/tvOS - simulator/Debug [dotnet]: Failed (Not enough space on the root drive '/': 889.99 MB left of 1024 MB required)
  • monotouch-test/tvOS - simulator/Debug (LinkSdk): Failed (Not enough space on the root drive '/': 889.99 MB left of 1024 MB required)
  • monotouch-test/tvOS - simulator/Debug (static registrar): Failed (Not enough space on the root drive '/': 889.99 MB left of 1024 MB required)
  • monotouch-test/tvOS - simulator/Release (all optimizations): Failed (Not enough space on the root drive '/': 889.99 MB left of 1024 MB required)
  • monotouch-test/tvOS - simulator/Debug (all optimizations): Failed (Not enough space on the root drive '/': 889.99 MB left of 1024 MB required)
  • monotouch-test/tvOS - simulator/Debug (LinkSdk) [dotnet]: Failed (Not enough space on the root drive '/': 889.99 MB left of 1024 MB required)
  • monotouch-test/tvOS - simulator/Debug (static registrar) [dotnet]: Failed (Not enough space on the root drive '/': 889.99 MB left of 1024 MB required)
  • monotouch-test/tvOS - simulator/Release (all optimizations) [dotnet]: Failed (Not enough space on the root drive '/': 889.99 MB left of 1024 MB required)
  • monotouch-test/tvOS - simulator/Debug (all optimizations) [dotnet]: Failed (Not enough space on the root drive '/': 889.99 MB left of 1024 MB required)
  • monotouch-test/watchOS 32-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 889.99 MB left of 1024 MB required)
  • monotouch-test/watchOS 32-bits - simulator/Debug (LinkSdk): Failed (Not enough space on the root drive '/': 889.99 MB left of 1024 MB required)
  • monotouch-test/watchOS 32-bits - simulator/Debug (static registrar): Failed (Not enough space on the root drive '/': 889.99 MB left of 1024 MB required)
  • monotouch-test/watchOS 32-bits - simulator/Release (all optimizations): Failed (Not enough space on the root drive '/': 889.99 MB left of 1024 MB required)
  • monotouch-test/watchOS 32-bits - simulator/Debug (all optimizations): Failed (Not enough space on the root drive '/': 889.99 MB left of 1024 MB required)
  • fsharp/iOS Unified 64-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 890.18 MB left of 1024 MB required)
  • fsharp/iOS Unified 64-bits - simulator/Debug [dotnet]: Failed (Not enough space on the root drive '/': 890 MB left of 1024 MB required)
  • fsharp/tvOS - simulator/Debug: Failed (Not enough space on the root drive '/': 889.99 MB left of 1024 MB required)
  • fsharp/tvOS - simulator/Debug [dotnet]: Failed (Not enough space on the root drive '/': 889.99 MB left of 1024 MB required)
  • fsharp/watchOS 32-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 889.99 MB left of 1024 MB required)
  • framework-test/iOS Unified 64-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 890.16 MB left of 1024 MB required)
  • framework-test/iOS Unified 64-bits - simulator/Debug [dotnet]: Failed (Not enough space on the root drive '/': 890 MB left of 1024 MB required)
  • framework-test/tvOS - simulator/Debug: Failed (Not enough space on the root drive '/': 889.99 MB left of 1024 MB required)
  • framework-test/tvOS - simulator/Debug [dotnet]: Failed (Not enough space on the root drive '/': 889.99 MB left of 1024 MB required)
  • framework-test/watchOS 32-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 889.99 MB left of 1024 MB required)
  • xcframework-test/iOS Unified 64-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 890.13 MB left of 1024 MB required)
  • xcframework-test/iOS Unified 64-bits - simulator/Debug [dotnet]: Failed (Not enough space on the root drive '/': 890 MB left of 1024 MB required)
  • xcframework-test/tvOS - simulator/Debug: Failed (Not enough space on the root drive '/': 889.99 MB left of 1024 MB required)
  • xcframework-test/tvOS - simulator/Debug [dotnet]: Failed (Not enough space on the root drive '/': 889.99 MB left of 1024 MB required)
  • xcframework-test/watchOS 32-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 889.99 MB left of 1024 MB required)
  • interdependent-binding-projects/iOS Unified 64-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 890.09 MB left of 1024 MB required)
  • interdependent-binding-projects/iOS Unified 64-bits - simulator/Debug [dotnet]: Failed (Not enough space on the root drive '/': 889.99 MB left of 1024 MB required)
  • interdependent-binding-projects/tvOS - simulator/Debug: Failed (Not enough space on the root drive '/': 889.99 MB left of 1024 MB required)
  • interdependent-binding-projects/tvOS - simulator/Debug [dotnet]: Failed (Not enough space on the root drive '/': 889.99 MB left of 1024 MB required)
  • interdependent-binding-projects/watchOS 32-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 889.99 MB left of 1024 MB required)
  • introspection/iOS Unified 64-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 890.07 MB left of 1024 MB required)
  • introspection/iOS Unified 64-bits - simulator/Debug [dotnet]: Failed (Not enough space on the root drive '/': 890.06 MB left of 1024 MB required)
  • introspection/tvOS - simulator/Debug: Failed (Not enough space on the root drive '/': 889.99 MB left of 1024 MB required)
  • introspection/tvOS - simulator/Debug [dotnet]: Failed (Not enough space on the root drive '/': 889.99 MB left of 1024 MB required)
  • introspection/watchOS 32-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 889.99 MB left of 1024 MB required)
  • introspection/iOS Unified 64-bits - simulator/Debug (iOS 11.4): Failed (Not enough space on the root drive '/': 889.99 MB left of 1024 MB required)
  • introspection/iOS Unified 64-bits - simulator/Debug (iOS 11.4) [dotnet]: Failed (Not enough space on the root drive '/': 889.99 MB left of 1024 MB required)
  • introspection/tvOS - simulator/Debug (tvOS 11.4): Failed (Not enough space on the root drive '/': 889.99 MB left of 1024 MB required)
  • introspection/tvOS - simulator/Debug (tvOS 11.4) [dotnet]: Failed (Not enough space on the root drive '/': 889.99 MB left of 1024 MB required)
  • introspection/watchOS 32-bits - simulator/Debug (watchOS 6.0): Failed (Not enough space on the root drive '/': 889.99 MB left of 1024 MB required)
  • dont link/iOS Unified 64-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 890.05 MB left of 1024 MB required)
  • dont link/iOS Unified 64-bits - simulator/Release: Failed (Not enough space on the root drive '/': 890.05 MB left of 1024 MB required)
  • dont link/iOS Unified 64-bits - simulator/Debug [dotnet]: Failed (Not enough space on the root drive '/': 890.05 MB left of 1024 MB required)
  • dont link/iOS Unified 64-bits - simulator/Release [dotnet]: Failed (Not enough space on the root drive '/': 890.04 MB left of 1024 MB required)
  • dont link/tvOS - simulator/Debug: Failed (Not enough space on the root drive '/': 889.99 MB left of 1024 MB required)
  • dont link/tvOS - simulator/Release: Failed (Not enough space on the root drive '/': 889.99 MB left of 1024 MB required)
  • dont link/tvOS - simulator/Debug [dotnet]: Failed (Not enough space on the root drive '/': 889.99 MB left of 1024 MB required)
  • dont link/tvOS - simulator/Release [dotnet]: Failed (Not enough space on the root drive '/': 889.99 MB left of 1024 MB required)
  • dont link/watchOS 32-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 889.99 MB left of 1024 MB required)
  • dont link/watchOS 32-bits - simulator/Release: Failed (Not enough space on the root drive '/': 889.99 MB left of 1024 MB required)
  • link all/iOS Unified 64-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 890.04 MB left of 1024 MB required)
  • link all/iOS Unified 64-bits - simulator/Release: Failed (Not enough space on the root drive '/': 890.04 MB left of 1024 MB required)
  • link all/iOS Unified 64-bits - simulator/Debug [dotnet]: Failed (Not enough space on the root drive '/': 890.03 MB left of 1024 MB required)
  • link all/iOS Unified 64-bits - simulator/Release [dotnet]: Failed (Not enough space on the root drive '/': 890.03 MB left of 1024 MB required)
  • link all/tvOS - simulator/Debug: Failed (Not enough space on the root drive '/': 889.99 MB left of 1024 MB required)
  • link all/tvOS - simulator/Release: Failed (Not enough space on the root drive '/': 889.99 MB left of 1024 MB required)
  • link all/tvOS - simulator/Debug [dotnet]: Failed (Not enough space on the root drive '/': 889.99 MB left of 1024 MB required)
  • link all/tvOS - simulator/Release [dotnet]: Failed (Not enough space on the root drive '/': 889.99 MB left of 1024 MB required)
  • link all/watchOS 32-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 889.99 MB left of 1024 MB required)
  • link all/watchOS 32-bits - simulator/Release: Failed (Not enough space on the root drive '/': 889.99 MB left of 1024 MB required)
  • link sdk/iOS Unified 64-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 890.02 MB left of 1024 MB required)
  • link sdk/iOS Unified 64-bits - simulator/Release: Failed (Not enough space on the root drive '/': 890.02 MB left of 1024 MB required)
  • link sdk/iOS Unified 64-bits - simulator/Debug [dotnet]: Failed (Not enough space on the root drive '/': 890.01 MB left of 1024 MB required)
  • link sdk/iOS Unified 64-bits - simulator/Release [dotnet]: Failed (Not enough space on the root drive '/': 890.01 MB left of 1024 MB required)
  • link sdk/tvOS - simulator/Debug: Failed (Not enough space on the root drive '/': 889.99 MB left of 1024 MB required)
  • link sdk/tvOS - simulator/Release: Failed (Not enough space on the root drive '/': 889.99 MB left of 1024 MB required)
  • link sdk/tvOS - simulator/Debug [dotnet]: Failed (Not enough space on the root drive '/': 889.99 MB left of 1024 MB required)
  • link sdk/tvOS - simulator/Release [dotnet]: Failed (Not enough space on the root drive '/': 889.99 MB left of 1024 MB required)
  • link sdk/watchOS 32-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 889.99 MB left of 1024 MB required)
  • link sdk/watchOS 32-bits - simulator/Release: Failed (Not enough space on the root drive '/': 889.99 MB left of 1024 MB required)
  • mono-native-compat/iOS Unified 64-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 889.98 MB left of 1024 MB required)
  • mono-native-compat/iOS Unified Today Extension 64-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 889.98 MB left of 1024 MB required)
  • mono-native-compat/tvOS - simulator/Debug: Failed (Not enough space on the root drive '/': 889.99 MB left of 1024 MB required)
  • mono-native-compat/watchOS 32-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 889.99 MB left of 1024 MB required)
  • mono-native-unified/iOS Unified 64-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 889.97 MB left of 1024 MB required)
  • mono-native-unified/iOS Unified Today Extension 64-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 889.97 MB left of 1024 MB required)
  • mono-native-unified/tvOS - simulator/Debug: Failed (Not enough space on the root drive '/': 889.99 MB left of 1024 MB required)
  • mono-native-unified/watchOS 32-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 889.99 MB left of 1024 MB required)
  • [NUnit] Mono BCL tests group 1/iOS Unified 64-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 889.97 MB left of 1024 MB required)
  • [NUnit] Mono BCL tests group 1/tvOS - simulator/Debug: Failed (Not enough space on the root drive '/': 889.99 MB left of 1024 MB required)
  • [NUnit] Mono BCL tests group 2/iOS Unified 64-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 889.96 MB left of 1024 MB required)
  • [NUnit] Mono BCL tests group 2/tvOS - simulator/Debug: Failed (Not enough space on the root drive '/': 889.99 MB left of 1024 MB required)
  • [xUnit] Mono BCL tests group 3/iOS Unified 64-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 889.96 MB left of 1024 MB required)
  • [xUnit] Mono BCL tests group 3/tvOS - simulator/Debug: Failed (Not enough space on the root drive '/': 889.99 MB left of 1024 MB required)
  • [xUnit] Mono BCL tests group 4/iOS Unified 64-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 889.96 MB left of 1024 MB required)
  • [xUnit] Mono BCL tests group 4/tvOS - simulator/Debug: Failed (Not enough space on the root drive '/': 889.99 MB left of 1024 MB required)
  • [xUnit] Mono BCL tests group 5/iOS Unified 64-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 889.96 MB left of 1024 MB required)
  • [xUnit] Mono BCL tests group 5/tvOS - simulator/Debug: Failed (Not enough space on the root drive '/': 889.99 MB left of 1024 MB required)
  • mscorlib Part 1/iOS Unified 64-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 889.95 MB left of 1024 MB required)
  • mscorlib Part 1/tvOS - simulator/Debug: Failed (Not enough space on the root drive '/': 889.99 MB left of 1024 MB required)
  • mscorlib Part 1/watchOS 32-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 889.99 MB left of 1024 MB required)
  • mscorlib Part 2/iOS Unified 64-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 889.95 MB left of 1024 MB required)
  • mscorlib Part 2/tvOS - simulator/Debug: Failed (Not enough space on the root drive '/': 889.99 MB left of 1024 MB required)
  • mscorlib Part 2/watchOS 32-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 889.99 MB left of 1024 MB required)
  • mscorlib Part 3/iOS Unified 64-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 889.95 MB left of 1024 MB required)
  • mscorlib Part 3/tvOS - simulator/Debug: Failed (Not enough space on the root drive '/': 889.99 MB left of 1024 MB required)
  • mscorlib Part 3/watchOS 32-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 889.99 MB left of 1024 MB required)
  • [xUnit] Mono SystemCoreXunit Part 1/iOS Unified 64-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 889.94 MB left of 1024 MB required)
  • [xUnit] Mono SystemCoreXunit Part 1/tvOS - simulator/Debug: Failed (Not enough space on the root drive '/': 889.99 MB left of 1024 MB required)
  • [xUnit] Mono SystemCoreXunit Part 1/watchOS 32-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 889.99 MB left of 1024 MB required)
  • [xUnit] Mono SystemCoreXunit Part 2/iOS Unified 64-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 889.94 MB left of 1024 MB required)
  • [xUnit] Mono SystemCoreXunit Part 2/tvOS - simulator/Debug: Failed (Not enough space on the root drive '/': 889.99 MB left of 1024 MB required)
  • [xUnit] Mono SystemCoreXunit Part 2/watchOS 32-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 889.99 MB left of 1024 MB required)
  • [xUnit] Mono SystemXunit/iOS Unified 64-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 889.93 MB left of 1024 MB required)
  • [xUnit] Mono SystemXunit/tvOS - simulator/Debug: Failed (Not enough space on the root drive '/': 889.99 MB left of 1024 MB required)
  • [xUnit] Mono SystemXunit/watchOS 32-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 889.99 MB left of 1024 MB required)
  • [NUnit] Mono SystemCoreTests/watchOS 32-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 889.99 MB left of 1024 MB required)
  • [NUnit] Mono SystemNumericsTests/watchOS 32-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 889.99 MB left of 1024 MB required)
  • [NUnit] Mono SystemRuntimeSerializationTests/watchOS 32-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 889.99 MB left of 1024 MB required)
  • [NUnit] Mono SystemTransactionsTests/watchOS 32-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 889.99 MB left of 1024 MB required)
  • [NUnit] Mono SystemXmlTests/watchOS 32-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 889.99 MB left of 1024 MB required)
  • [NUnit] Mono SystemXmlLinqTests/watchOS 32-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 889.99 MB left of 1024 MB required)
  • [NUnit] Mono SystemComponentModelDataAnnotationsTests/watchOS 32-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 889.99 MB left of 1024 MB required)
  • [NUnit] Mono SystemJsonTests/watchOS 32-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 889.99 MB left of 1024 MB required)
  • [NUnit] Mono SystemServiceModelWebTests/watchOS 32-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 889.99 MB left of 1024 MB required)
  • [NUnit] Mono SystemIOCompressionTests/watchOS 32-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 889.99 MB left of 1024 MB required)
  • [NUnit] Mono SystemIOCompressionFileSystemTests/watchOS 32-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 889.99 MB left of 1024 MB required)
  • [NUnit] Mono MonoCSharpTests/watchOS 32-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 889.99 MB left of 1024 MB required)
  • [NUnit] Mono SystemSecurityTests/watchOS 32-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 889.99 MB left of 1024 MB required)
  • [NUnit] Mono MonoDataSqliteTests/watchOS 32-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 889.99 MB left of 1024 MB required)
  • [NUnit] Mono MonoRuntimeTests/watchOS 32-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 889.99 MB left of 1024 MB required)
  • [NUnit] Mono SystemTests/watchOS 32-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 889.99 MB left of 1024 MB required)
  • [NUnit] Mono SystemDataTests/watchOS 32-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 889.99 MB left of 1024 MB required)
  • [NUnit] Mono SystemDataDataSetExtensionsTests/watchOS 32-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 889.99 MB left of 1024 MB required)
  • [NUnit] Mono SystemNetHttpTests/watchOS 32-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 889.99 MB left of 1024 MB required)
  • [NUnit] Mono SystemServiceModelTests/watchOS 32-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 889.99 MB left of 1024 MB required)
  • [NUnit] Mono CorlibTests/watchOS 32-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 889.99 MB left of 1024 MB required)
  • [NUnit] Mono SystemWebServicesTests/watchOS 32-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 889.99 MB left of 1024 MB required)
  • [xUnit] Mono SystemDataXunit/watchOS 32-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 889.99 MB left of 1024 MB required)
  • [xUnit] Mono SystemJsonXunit/watchOS 32-bits - simulator/Debug: Failed (Not enough spac\n\nThe message from CI is too large for the GitHub comments. You can find the full results here.

@vs-mobiletools-engineering-service2
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Tests were not ran (VSTS: device tests tvOS). ⚠️

Results were skipped for this run due to provisioning problems Azure Devops. Please contact the bot administrator.

Pipeline on Agent
[VideoToolbox] Add support for Xcode13 beta5. (#12466)

@vs-mobiletools-engineering-service2
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Tests were not ran (VSTS: device tests iOS). ⚠️

Results were skipped for this run due to provisioning problems Azure Devops. Please contact the bot administrator.

Pipeline on Agent
[VideoToolbox] Add support for Xcode13 beta5. (#12466)

@vs-mobiletools-engineering-service2
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

❌ Tests failed on macOS M1 - Mac Big Sur (11.5) ❌

Tests failed on M1 - Mac Big Sur (11.5).

Failed tests are:

  • xammac_tests

Pipeline on Agent
[VideoToolbox] Add support for Xcode13 beta5. (#12466)

@vs-mobiletools-engineering-service2
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

✅ Tests passed on macOS Mac Mojave (10.14) ✅

Tests passed

All tests on macOS X Mac Mojave (10.14) passed.

Pipeline on Agent
[VideoToolbox] Add support for Xcode13 beta5. (#12466)

Please sign in to comment.