Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master' into bump-xamarin-forms-…
Browse files Browse the repository at this point in the history
…book-samples
  • Loading branch information
rolfbjarne committed May 31, 2019
2 parents bd7e48e + 614de0b commit 5a8acb5
Show file tree
Hide file tree
Showing 9 changed files with 44 additions and 21 deletions.
2 changes: 1 addition & 1 deletion mk/xamarin.mk
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ifdef ENABLE_XAMARIN
NEEDED_MACCORE_VERSION := 104656b89060d3c98cdc626709f7cadc467549af
NEEDED_MACCORE_VERSION := 454450958e601857ce244ccaa9a2f1a377dabc87
NEEDED_MACCORE_BRANCH := master

MACCORE_DIRECTORY := maccore
Expand Down
15 changes: 8 additions & 7 deletions src/generator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5228,13 +5228,7 @@ void GenerateAsyncMethod (MemberInformation original_minfo, AsyncMethodKind asyn
void PrintMethodAttributes (MemberInformation minfo)
{
MethodInfo mi = minfo.method;

foreach (var oa in AttributeManager.GetCustomAttributes<ObsoleteAttribute> (mi)) {
print ("[Obsolete (\"{0}\", {1})]",
oa.Message, oa.IsError ? "true" : "false");
print ("[EditorBrowsable (EditorBrowsableState.Never)]");

}
var editor_browsable_attribute = false;

foreach (var sa in AttributeManager.GetCustomAttributes<ThreadSafeAttribute> (mi))
print (sa.Safe ? "[ThreadSafe]" : "[ThreadSafe (false)]");
Expand All @@ -5245,6 +5239,13 @@ void PrintMethodAttributes (MemberInformation minfo)
} else {
print ("[EditorBrowsable (EditorBrowsableState.{0})]", ea.State);
}
editor_browsable_attribute = true;
}

foreach (var oa in AttributeManager.GetCustomAttributes<ObsoleteAttribute> (mi)) {
print ("[Obsolete (\"{0}\", {1})]", oa.Message, oa.IsError ? "true" : "false");
if (!editor_browsable_attribute)
print ("[EditorBrowsable (EditorBrowsableState.Never)]");
}

if (minfo.is_return_release)
Expand Down
4 changes: 2 additions & 2 deletions tests/bcl-test/BCLTests/BCLTests-tv.csproj.in
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
<ProjectGuid>{C459A4DD-0AFF-4B2C-9DEC-4B62CE04F4E2}</ProjectGuid>
<ProjectTypeGuids>{06FA79CB-D6CD-4721-BB4B-1BD202089C55}</ProjectTypeGuids>
<OutputType>Exe</OutputType>
<RootNamespace>%NAME%</RootNamespace>
<AssemblyName>%NAME%</AssemblyName>
<RootNamespace>com.xamarin.bcltests.%NAME%</RootNamespace>
<AssemblyName>com.xamarin.bcltests.%NAME%</AssemblyName>
<NoWarn>67,168,169,219,414,612,618,649,672</NoWarn>
<TargetFrameworkIdentifier>Xamarin.TVOS</TargetFrameworkIdentifier>
<IPhoneResourcePrefix>Resources</IPhoneResourcePrefix>
Expand Down
2 changes: 1 addition & 1 deletion tests/bcl-test/BCLTests/Info-tv.plist.in
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<plist version="1.0">
<dict>
<key>CFBundleName</key>
<string>%APPLICATION NAME%</string>
<string>com.xamarin.bcltests.%APPLICATION NAME%</string>
<key>CFBundleIdentifier</key>
<string>%BUNDLE INDENTIFIER%</string>
<key>CFBundleShortVersionString</key>
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# device failures:

# Expected: 0
# Actual: -1
System.IO.Tests.FileInfo_Exists.TrueForNonRegularFile
System.IO.Tests.DirectoryInfo_Exists.FalseForNonRegularFile

# Exception messages: System.NullReferenceException : Object reference not set to an instance of an object
System.Threading.Tasks.Tests.TaskSchedulerTests.GetScheduledTasksForDebugger_DebuggerAttached_ReturnsTasksFromCustomSchedulers
8 changes: 8 additions & 0 deletions tests/generator/BGenTool.cs
Original file line number Diff line number Diff line change
Expand Up @@ -151,11 +151,19 @@ int Execute ()
var in_process = InProcess && Profile != Profile.macOSClassic;
if (in_process) {
int rv;
var previous_environment = new Dictionary<string, string> ();
foreach (var kvp in EnvironmentVariables) {
previous_environment [kvp.Key] = Environment.GetEnvironmentVariable (kvp.Key);
Environment.SetEnvironmentVariable (kvp.Key, kvp.Value);
}
ThreadStaticTextWriter.ReplaceConsole (Output);
try {
rv = BindingTouch.Main (arguments);
} finally {
ThreadStaticTextWriter.RestoreConsole ();
foreach (var kvp in previous_environment) {
Environment.SetEnvironmentVariable (kvp.Key, kvp.Value);
}
}
Console.WriteLine (Output);
ParseMessages ();
Expand Down
18 changes: 10 additions & 8 deletions tests/monotouch-test/Metal/MTLDeviceTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -110,14 +110,16 @@ public void ReturnReleaseTest ()
}

#if __MACOS__
using (var descriptor = MTLTextureDescriptor.CreateTexture2DDescriptor (MTLPixelFormat.RGBA8Unorm, 64, 64, false)) {
descriptor.StorageMode = MTLStorageMode.Private;
using (var texture = device.CreateSharedTexture (descriptor)) {
Assert.IsNotNull (texture, "CreateSharedTexture (MTLTextureDescriptor): NonNull");

using (var handle = texture.CreateSharedTextureHandle ())
using (var shared = device.CreateSharedTexture (handle))
Assert.IsNotNull (texture, "CreateSharedTexture (MTLSharedTextureHandle): NonNull");
if (TestRuntime.CheckXcodeVersion (10, 0)) {
using (var descriptor = MTLTextureDescriptor.CreateTexture2DDescriptor (MTLPixelFormat.RGBA8Unorm, 64, 64, false)) {
descriptor.StorageMode = MTLStorageMode.Private;
using (var texture = device.CreateSharedTexture (descriptor)) {
Assert.IsNotNull (texture, "CreateSharedTexture (MTLTextureDescriptor): NonNull");

using (var handle = texture.CreateSharedTextureHandle ())
using (var shared = device.CreateSharedTexture (handle))
Assert.IsNotNull (texture, "CreateSharedTexture (MTLSharedTextureHandle): NonNull");
}
}
}
#endif
Expand Down
5 changes: 5 additions & 0 deletions tests/monotouch-test/System.Net.Http/MessageHandlers.cs
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,11 @@ public void RejectSslCertificatesServicePointManager (Type handlerType)
TestRuntime.AssertSystemVersion (PlatformName.MacOSX, 10, 9, throwIfOtherPlatform: false);
TestRuntime.AssertSystemVersion (PlatformName.iOS, 7, 0, throwIfOtherPlatform: false);

#if __MACOS__
if (handlerType == typeof (NSUrlSessionHandler) && TestRuntime.CheckSystemVersion (PlatformName.MacOSX, 10, 10, 0) && !TestRuntime.CheckSystemVersion (PlatformName.MacOSX, 10, 11, 0))
Assert.Ignore ("Fails on macOS 10.10: https://github.com/xamarin/maccore/issues/1645");
#endif

bool servicePointManagerCbWasExcuted = false;
bool done = false;
Exception ex = null;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -161,8 +161,6 @@ public class BclTestProjectInfo {
static readonly List<string> iOSIgnoredAssemblies = new List<string> {};

static readonly List<string> tvOSIgnoredAssemblies = new List<string> {
"monotouch_corlib_xunit-test.dll", // ignored due to https://github.com/xamarin/maccore/issues/1611 until mono fixes it
"monotouch_System_xunit-test.dll", // ignored due to https://github.com/xamarin/maccore/issues/1610
};

static readonly List<string> watcOSIgnoredAssemblies = new List<string> {
Expand Down

4 comments on commit 5a8acb5

@xamarin-release-manager
Copy link
Collaborator

Choose a reason for hiding this comment

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

❌ Status for 'xamarin-macios - sample testing (build)': failure.

  • ❌ Debug|iPhone|A-F: Failed
  • ✅ Debug|iPhone|G-R: Succeeded
  • ✅ Debug|iPhone|S-Z: Succeeded
  • ✅ Debug|iPhoneSimulator: Succeeded
  • ❌ Release|iPhone|A-F: Failed
  • ✅ Release|iPhone|G-R: Succeeded
  • ❌ Release|iPhone|S-Z: Failed
  • ❌ Release|iPhoneSimulator: Failed
  • ✅ Debug|Mac: Succeeded
  • ❌ Release|Mac: Failed

@xamarin-release-manager
Copy link
Collaborator

Choose a reason for hiding this comment

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

🔥 Device tests completed (Failed) on iOS on Azure DevOps(iOS): Html Report 🔥

Test results

113 tests failed, 0 tests passed.

Failed tests

  • monotouch-test/iOS Unified 64-bits - device/Debug: Failed
  • framework-test/iOS Unified 64-bits - device/Debug: Failed
  • interdependent-binding-projects/iOS Unified 64-bits - device/Debug: Failed
  • fsharp/iOS Unified 64-bits - device/Debug: Failed
  • dont link/iOS Unified 64-bits - device/Debug: Failed
  • link all/iOS Unified 64-bits - device/Debug: Failed
  • link sdk/iOS Unified 64-bits - device/Debug: Failed
  • mono-native-compat/iOS Unified 64-bits - device/Debug: Failed
  • mono-native-unified/iOS Unified 64-bits - device/Debug: Failed
  • [NUnit] Mono BCL tests group 1/iOS Unified 64-bits - device/Debug: Failed
  • [NUnit] Mono BCL tests group 2/iOS Unified 64-bits - device/Debug: Failed
  • [xUnit] Mono BCL tests group 3/iOS Unified 64-bits - device/Debug: Failed
  • [xUnit] Mono BCL tests group 4/iOS Unified 64-bits - device/Debug: Failed
  • mscorlib/iOS Unified 64-bits - device/Debug: Failed
  • [xUnit] Mono BCL tests group 6/iOS Unified 64-bits - device/Debug: Failed
  • monotouch-test/iOS Unified 64-bits - device/AssemblyBuildTarget: dylib (debug): Failed
  • monotouch-test/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (debug): Failed
  • monotouch-test/iOS Unified 64-bits - device/AssemblyBuildTarget: dylib (debug, profiling): Failed
  • monotouch-test/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (debug, profiling): Failed
  • monotouch-test/iOS Unified 64-bits - device/Release: Failed
  • monotouch-test/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (release): Failed
  • monotouch-test/iOS Unified 64-bits - device/Debug (dynamic registrar): Failed
  • monotouch-test/iOS Unified 64-bits - device/Release (all optimizations): Failed
  • monotouch-test/iOS Unified 64-bits - device/Debug (all optimizations): Failed
  • monotouch-test/iOS Unified 64-bits - device/Debug: SGenConc: Failed
  • framework-test/iOS Unified 64-bits - device/AssemblyBuildTarget: dylib (debug): Failed
  • framework-test/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (debug): Failed
  • framework-test/iOS Unified 64-bits - device/AssemblyBuildTarget: dylib (debug, profiling): Failed
  • framework-test/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (debug, profiling): Failed
  • framework-test/iOS Unified 64-bits - device/Release: Failed
  • framework-test/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (release): Failed
  • interdependent-binding-projects/iOS Unified 64-bits - device/AssemblyBuildTarget: dylib (debug): Failed
  • interdependent-binding-projects/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (debug): Failed
  • interdependent-binding-projects/iOS Unified 64-bits - device/AssemblyBuildTarget: dylib (debug, profiling): Failed
  • interdependent-binding-projects/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (debug, profiling): Failed
  • interdependent-binding-projects/iOS Unified 64-bits - device/Release: Failed
  • interdependent-binding-projects/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (release): Failed
  • fsharp/iOS Unified 64-bits - device/AssemblyBuildTarget: dylib (debug): Failed
  • fsharp/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (debug): Failed
  • fsharp/iOS Unified 64-bits - device/AssemblyBuildTarget: dylib (debug, profiling): Failed
  • fsharp/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (debug, profiling): Failed
  • fsharp/iOS Unified 64-bits - device/Release: Failed
  • fsharp/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (release): Failed
  • dont link/iOS Unified 64-bits - device/AssemblyBuildTarget: dylib (debug): Failed
  • dont link/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (debug): Failed
  • dont link/iOS Unified 64-bits - device/AssemblyBuildTarget: dylib (debug, profiling): Failed
  • dont link/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (debug, profiling): Failed
  • dont link/iOS Unified 64-bits - device/Release: Failed
  • dont link/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (release): Failed
  • link all/iOS Unified 64-bits - device/AssemblyBuildTarget: dylib (debug): Failed
  • link all/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (debug): Failed
  • link all/iOS Unified 64-bits - device/AssemblyBuildTarget: dylib (debug, profiling): Failed
  • link all/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (debug, profiling): Failed
  • link all/iOS Unified 64-bits - device/Release: Failed
  • link all/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (release): Failed
  • link sdk/iOS Unified 64-bits - device/AssemblyBuildTarget: dylib (debug): Failed
  • link sdk/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (debug): Failed
  • link sdk/iOS Unified 64-bits - device/AssemblyBuildTarget: dylib (debug, profiling): Failed
  • link sdk/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (debug, profiling): Failed
  • link sdk/iOS Unified 64-bits - device/Release: Failed
  • link sdk/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (release): Failed
  • mono-native-compat/iOS Unified 64-bits - device/AssemblyBuildTarget: dylib (debug): Failed
  • mono-native-compat/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (debug): Failed
  • mono-native-compat/iOS Unified 64-bits - device/AssemblyBuildTarget: dylib (debug, profiling): Failed
  • mono-native-compat/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (debug, profiling): Failed
  • mono-native-compat/iOS Unified 64-bits - device/Release: Failed
  • mono-native-compat/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (release): Failed
  • mono-native-unified/iOS Unified 64-bits - device/AssemblyBuildTarget: dylib (debug): Failed
  • mono-native-unified/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (debug): Failed
  • mono-native-unified/iOS Unified 64-bits - device/AssemblyBuildTarget: dylib (debug, profiling): Failed
  • mono-native-unified/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (debug, profiling): Failed
  • mono-native-unified/iOS Unified 64-bits - device/Release: Failed
  • mono-native-unified/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (release): Failed
  • [NUnit] Mono BCL tests group 1/iOS Unified 64-bits - device/AssemblyBuildTarget: dylib (debug): Failed
  • [NUnit] Mono BCL tests group 1/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (debug): Failed
  • [NUnit] Mono BCL tests group 1/iOS Unified 64-bits - device/AssemblyBuildTarget: dylib (debug, profiling): Failed
  • [NUnit] Mono BCL tests group 1/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (debug, profiling): Failed
  • [NUnit] Mono BCL tests group 1/iOS Unified 64-bits - device/Release: Failed
  • [NUnit] Mono BCL tests group 1/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (release): Failed
  • [NUnit] Mono BCL tests group 2/iOS Unified 64-bits - device/AssemblyBuildTarget: dylib (debug): Failed
  • [NUnit] Mono BCL tests group 2/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (debug): Failed
  • [NUnit] Mono BCL tests group 2/iOS Unified 64-bits - device/AssemblyBuildTarget: dylib (debug, profiling): Failed
  • [NUnit] Mono BCL tests group 2/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (debug, profiling): Failed
  • [NUnit] Mono BCL tests group 2/iOS Unified 64-bits - device/Release: Failed
  • [NUnit] Mono BCL tests group 2/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (release): Failed
  • [xUnit] Mono BCL tests group 3/iOS Unified 64-bits - device/AssemblyBuildTarget: dylib (debug): Failed
  • [xUnit] Mono BCL tests group 3/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (debug): Failed
  • [xUnit] Mono BCL tests group 3/iOS Unified 64-bits - device/AssemblyBuildTarget: dylib (debug, profiling): Failed
  • [xUnit] Mono BCL tests group 3/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (debug, profiling): Failed
  • [xUnit] Mono BCL tests group 3/iOS Unified 64-bits - device/Release: Failed
  • [xUnit] Mono BCL tests group 3/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (release): Failed
  • [xUnit] Mono BCL tests group 4/iOS Unified 64-bits - device/AssemblyBuildTarget: dylib (debug): Failed
  • [xUnit] Mono BCL tests group 4/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (debug): Failed
  • [xUnit] Mono BCL tests group 4/iOS Unified 64-bits - device/AssemblyBuildTarget: dylib (debug, profiling): Failed
  • [xUnit] Mono BCL tests group 4/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (debug, profiling): Failed
  • [xUnit] Mono BCL tests group 4/iOS Unified 64-bits - device/Release: Failed
  • [xUnit] Mono BCL tests group 4/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (release): Failed
  • mscorlib/iOS Unified 64-bits - device/AssemblyBuildTarget: dylib (debug): Failed
  • mscorlib/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (debug): Failed
  • mscorlib/iOS Unified 64-bits - device/AssemblyBuildTarget: dylib (debug, profiling): Failed
  • mscorlib/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (debug, profiling): Failed
  • mscorlib/iOS Unified 64-bits - device/Release: Failed
  • mscorlib/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (release): Failed
  • mscorlib/iOS Unified 64-bits - device/Debug: SGenConc: Failed
  • mscorlib/iOS Unified 64-bits - device/Debug (interpreter): Failed
  • mscorlib/iOS Unified 64-bits - device/Debug (interpreter -mscorlib): BuildFailure
  • mscorlib/iOS Unified 64-bits - device/Release (interpreter -mscorlib): BuildFailure
  • [xUnit] Mono BCL tests group 6/iOS Unified 64-bits - device/AssemblyBuildTarget: dylib (debug): Failed
  • [xUnit] Mono BCL tests group 6/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (debug): Failed
  • [xUnit] Mono BCL tests group 6/iOS Unified 64-bits - device/AssemblyBuildTarget: dylib (debug, profiling): Failed
  • [xUnit] Mono BCL tests group 6/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (debug, profiling): Failed
  • [xUnit] Mono BCL tests group 6/iOS Unified 64-bits - device/Release: Failed
  • [xUnit] Mono BCL tests group 6/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (release): Failed

@xamarin-release-manager
Copy link
Collaborator

Choose a reason for hiding this comment

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

Build was (probably) aborted

🔥 Jenkins job (on internal Jenkins) failed in stage(s) 'Test run, Test run' 🔥

Build succeeded
✅ Packages: xamarin.ios-12.15.0.197.pkg xamarin.mac-5.15.0.197.pkg
API Diff (from stable)
API Diff (from PR only) (no change)
Generator Diff (no change)
🔥 Test run failed 🔥

Test results

4 tests failed, 167 tests passed.

Failed tests

  • [xUnit] Mono Mac OS X BCL tests group 4/Mac/Modern: Failed (Test run crashed (exit code: 134).)
  • mscorlib/iOS Unified 32-bits - simulator/Debug: Failed
  • monotouch-test/watchOS 32-bits - simulator/Debug: Crashed
  • introspection/watchOS 32-bits - simulator/Debug (watchOS 2.0): Crashed

@xamarin-release-manager
Copy link
Collaborator

Choose a reason for hiding this comment

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

🔥 Device tests completed (Failed) on TvOS on Azure DevOps(TvOS): Html Report 🔥

Test results

113 tests failed, 0 tests passed.

Failed tests

  • monotouch-test/tvOS - device/Debug: Failed
  • framework-test/tvOS - device/Debug: Failed
  • interdependent-binding-projects/tvOS - device/Debug: Failed
  • fsharp/tvOS - device/Debug: Failed
  • dont link/tvOS - device/Debug: Failed
  • link all/tvOS - device/Debug: Failed
  • link sdk/tvOS - device/Debug: Failed
  • mono-native-compat/tvOS - device/Debug: Failed
  • mono-native-unified/tvOS - device/Debug: Failed
  • [NUnit] Mono BCL tests group 1/tvOS - device/Debug: Failed
  • [NUnit] Mono BCL tests group 2/tvOS - device/Debug: Failed
  • [xUnit] Mono BCL tests group 3/tvOS - device/Debug: Failed
  • [xUnit] Mono BCL tests group 4/tvOS - device/Debug: Failed
  • mscorlib/tvOS - device/Debug: Failed
  • [xUnit] Mono BCL tests group 6/tvOS - device/Debug: Failed
  • monotouch-test/tvOS - device/AssemblyBuildTarget: dylib (debug): Failed
  • monotouch-test/tvOS - device/AssemblyBuildTarget: SDK framework (debug): Failed
  • monotouch-test/tvOS - device/AssemblyBuildTarget: dylib (debug, profiling): Failed
  • monotouch-test/tvOS - device/AssemblyBuildTarget: SDK framework (debug, profiling): Failed
  • monotouch-test/tvOS - device/Release: Failed
  • monotouch-test/tvOS - device/AssemblyBuildTarget: SDK framework (release): Failed
  • monotouch-test/tvOS - device/Debug (dynamic registrar): Failed
  • monotouch-test/tvOS - device/Release (all optimizations): Failed
  • monotouch-test/tvOS - device/Debug (all optimizations): Failed
  • monotouch-test/tvOS - device/Debug: SGenConc: Failed
  • framework-test/tvOS - device/AssemblyBuildTarget: dylib (debug): Failed
  • framework-test/tvOS - device/AssemblyBuildTarget: SDK framework (debug): Failed
  • framework-test/tvOS - device/AssemblyBuildTarget: dylib (debug, profiling): Failed
  • framework-test/tvOS - device/AssemblyBuildTarget: SDK framework (debug, profiling): Failed
  • framework-test/tvOS - device/Release: Failed
  • framework-test/tvOS - device/AssemblyBuildTarget: SDK framework (release): Failed
  • interdependent-binding-projects/tvOS - device/AssemblyBuildTarget: dylib (debug): Failed
  • interdependent-binding-projects/tvOS - device/AssemblyBuildTarget: SDK framework (debug): Failed
  • interdependent-binding-projects/tvOS - device/AssemblyBuildTarget: dylib (debug, profiling): Failed
  • interdependent-binding-projects/tvOS - device/AssemblyBuildTarget: SDK framework (debug, profiling): Failed
  • interdependent-binding-projects/tvOS - device/Release: Failed
  • interdependent-binding-projects/tvOS - device/AssemblyBuildTarget: SDK framework (release): Failed
  • fsharp/tvOS - device/AssemblyBuildTarget: dylib (debug): Failed
  • fsharp/tvOS - device/AssemblyBuildTarget: SDK framework (debug): Failed
  • fsharp/tvOS - device/AssemblyBuildTarget: dylib (debug, profiling): Failed
  • fsharp/tvOS - device/AssemblyBuildTarget: SDK framework (debug, profiling): Failed
  • fsharp/tvOS - device/Release: Failed
  • fsharp/tvOS - device/AssemblyBuildTarget: SDK framework (release): Failed
  • dont link/tvOS - device/AssemblyBuildTarget: dylib (debug): Failed
  • dont link/tvOS - device/AssemblyBuildTarget: SDK framework (debug): Failed
  • dont link/tvOS - device/AssemblyBuildTarget: dylib (debug, profiling): Failed
  • dont link/tvOS - device/AssemblyBuildTarget: SDK framework (debug, profiling): Failed
  • dont link/tvOS - device/Release: Failed
  • dont link/tvOS - device/AssemblyBuildTarget: SDK framework (release): Failed
  • link all/tvOS - device/AssemblyBuildTarget: dylib (debug): Failed
  • link all/tvOS - device/AssemblyBuildTarget: SDK framework (debug): Failed
  • link all/tvOS - device/AssemblyBuildTarget: dylib (debug, profiling): Failed
  • link all/tvOS - device/AssemblyBuildTarget: SDK framework (debug, profiling): Failed
  • link all/tvOS - device/Release: Failed
  • link all/tvOS - device/AssemblyBuildTarget: SDK framework (release): Failed
  • link sdk/tvOS - device/AssemblyBuildTarget: dylib (debug): Failed
  • link sdk/tvOS - device/AssemblyBuildTarget: SDK framework (debug): Failed
  • link sdk/tvOS - device/AssemblyBuildTarget: dylib (debug, profiling): Failed
  • link sdk/tvOS - device/AssemblyBuildTarget: SDK framework (debug, profiling): Failed
  • link sdk/tvOS - device/Release: Failed
  • link sdk/tvOS - device/AssemblyBuildTarget: SDK framework (release): Failed
  • mono-native-compat/tvOS - device/AssemblyBuildTarget: dylib (debug): Failed
  • mono-native-compat/tvOS - device/AssemblyBuildTarget: SDK framework (debug): Failed
  • mono-native-compat/tvOS - device/AssemblyBuildTarget: dylib (debug, profiling): Failed
  • mono-native-compat/tvOS - device/AssemblyBuildTarget: SDK framework (debug, profiling): Failed
  • mono-native-compat/tvOS - device/Release: Failed
  • mono-native-compat/tvOS - device/AssemblyBuildTarget: SDK framework (release): Failed
  • mono-native-unified/tvOS - device/AssemblyBuildTarget: dylib (debug): Failed
  • mono-native-unified/tvOS - device/AssemblyBuildTarget: SDK framework (debug): Failed
  • mono-native-unified/tvOS - device/AssemblyBuildTarget: dylib (debug, profiling): Failed
  • mono-native-unified/tvOS - device/AssemblyBuildTarget: SDK framework (debug, profiling): Failed
  • mono-native-unified/tvOS - device/Release: Failed
  • mono-native-unified/tvOS - device/AssemblyBuildTarget: SDK framework (release): Failed
  • [NUnit] Mono BCL tests group 1/tvOS - device/AssemblyBuildTarget: dylib (debug): Failed
  • [NUnit] Mono BCL tests group 1/tvOS - device/AssemblyBuildTarget: SDK framework (debug): Failed
  • [NUnit] Mono BCL tests group 1/tvOS - device/AssemblyBuildTarget: dylib (debug, profiling): Failed
  • [NUnit] Mono BCL tests group 1/tvOS - device/AssemblyBuildTarget: SDK framework (debug, profiling): Failed
  • [NUnit] Mono BCL tests group 1/tvOS - device/Release: Failed (MT1032: This application executable might be too large (853 MB) to execute on device. If bitcode was enabled you might want to disable it for development, it is only required to submit applications to Apple.)
  • [NUnit] Mono BCL tests group 1/tvOS - device/AssemblyBuildTarget: SDK framework (release): Failed
  • [NUnit] Mono BCL tests group 2/tvOS - device/AssemblyBuildTarget: dylib (debug): Failed
  • [NUnit] Mono BCL tests group 2/tvOS - device/AssemblyBuildTarget: SDK framework (debug): Failed
  • [NUnit] Mono BCL tests group 2/tvOS - device/AssemblyBuildTarget: dylib (debug, profiling): Failed
  • [NUnit] Mono BCL tests group 2/tvOS - device/AssemblyBuildTarget: SDK framework (debug, profiling): Failed
  • [NUnit] Mono BCL tests group 2/tvOS - device/Release: Failed (MT1032: This application executable might be too large (975 MB) to execute on device. If bitcode was enabled you might want to disable it for development, it is only required to submit applications to Apple.)
  • [NUnit] Mono BCL tests group 2/tvOS - device/AssemblyBuildTarget: SDK framework (release): Failed
  • [xUnit] Mono BCL tests group 3/tvOS - device/AssemblyBuildTarget: dylib (debug): Failed
  • [xUnit] Mono BCL tests group 3/tvOS - device/AssemblyBuildTarget: SDK framework (debug): Failed
  • [xUnit] Mono BCL tests group 3/tvOS - device/AssemblyBuildTarget: dylib (debug, profiling): Failed
  • [xUnit] Mono BCL tests group 3/tvOS - device/AssemblyBuildTarget: SDK framework (debug, profiling): Failed
  • [xUnit] Mono BCL tests group 3/tvOS - device/Release: Failed (MT1032: This application executable might be too large (708 MB) to execute on device. If bitcode was enabled you might want to disable it for development, it is only required to submit applications to Apple.)
  • [xUnit] Mono BCL tests group 3/tvOS - device/AssemblyBuildTarget: SDK framework (release): Failed
  • [xUnit] Mono BCL tests group 4/tvOS - device/AssemblyBuildTarget: dylib (debug): Failed
  • [xUnit] Mono BCL tests group 4/tvOS - device/AssemblyBuildTarget: SDK framework (debug): Failed
  • [xUnit] Mono BCL tests group 4/tvOS - device/AssemblyBuildTarget: dylib (debug, profiling): Failed
  • [xUnit] Mono BCL tests group 4/tvOS - device/AssemblyBuildTarget: SDK framework (debug, profiling): Failed
  • [xUnit] Mono BCL tests group 4/tvOS - device/Release: Failed (MT1032: This application executable might be too large (1149 MB) to execute on device. If bitcode was enabled you might want to disable it for development, it is only required to submit applications to Apple.)
  • [xUnit] Mono BCL tests group 4/tvOS - device/AssemblyBuildTarget: SDK framework (release): Failed (MT1032: This application executable might be too large (641 MB) to execute on device. If bitcode was enabled you might want to disable it for development, it is only required to submit applications to Apple.)
  • mscorlib/tvOS - device/AssemblyBuildTarget: dylib (debug): Failed
  • mscorlib/tvOS - device/AssemblyBuildTarget: SDK framework (debug): Failed
  • mscorlib/tvOS - device/AssemblyBuildTarget: dylib (debug, profiling): Failed
  • mscorlib/tvOS - device/AssemblyBuildTarget: SDK framework (debug, profiling): Failed
  • mscorlib/tvOS - device/Release: Failed (MT1032: This application executable might be too large (982 MB) to execute on device. If bitcode was enabled you might want to disable it for development, it is only required to submit applications to Apple.)
  • mscorlib/tvOS - device/AssemblyBuildTarget: SDK framework (release): Failed (MT1032: This application executable might be too large (559 MB) to execute on device. If bitcode was enabled you might want to disable it for development, it is only required to submit applications to Apple.)
  • mscorlib/tvOS - device/Debug: SGenConc: Failed
  • mscorlib/tvOS - device/Debug (interpreter): Failed
  • mscorlib/tvOS - device/Debug (interpreter -mscorlib): BuildFailure
  • mscorlib/tvOS - device/Release (interpreter -mscorlib): BuildFailure
  • [xUnit] Mono BCL tests group 6/tvOS - device/AssemblyBuildTarget: dylib (debug): Failed
  • [xUnit] Mono BCL tests group 6/tvOS - device/AssemblyBuildTarget: SDK framework (debug): Failed
  • [xUnit] Mono BCL tests group 6/tvOS - device/AssemblyBuildTarget: dylib (debug, profiling): Failed
  • [xUnit] Mono BCL tests group 6/tvOS - device/AssemblyBuildTarget: SDK framework (debug, profiling): Failed
  • [xUnit] Mono BCL tests group 6/tvOS - device/Release: Failed
  • [xUnit] Mono BCL tests group 6/tvOS - device/AssemblyBuildTarget: SDK framework (release): Failed

Please sign in to comment.