Skip to content

Commit

Permalink
[msbuild] Unify the iOS and macOS version of ACToolTaskBase. (#10810)
Browse files Browse the repository at this point in the history
* [msbuild] Unify the iOS and macOS version of ACToolTaskBase.

* The ACTool task now needs the target framework moniker.
  • Loading branch information
rolfbjarne authored Mar 9, 2021
1 parent 91ce22c commit 3a96cb0
Show file tree
Hide file tree
Showing 4 changed files with 42 additions and 63 deletions.
40 changes: 37 additions & 3 deletions msbuild/Xamarin.MacDev.Tasks.Core/Tasks/ACToolTaskBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,10 @@
using System.Text.Json;
using System.Linq;
using System.Collections.Generic;
using System.Runtime.Serialization;

using Microsoft.Build.Framework;
using Microsoft.Build.Utilities;

using Xamarin.MacDev.Tasks;
using Xamarin.MacDev;
using Xamarin.Localization.MSBuild;
using Xamarin.Utils;

Expand Down Expand Up @@ -472,5 +469,42 @@ public override bool Execute ()

return !Log.HasLoggedErrors;
}

protected override IEnumerable<string> GetTargetDevices (PDictionary plist)
{
var devices = IPhoneDeviceType.NotSet;
bool watch = false;

if (Platform == ApplePlatform.MacOSX)
yield break;

if (plist != null) {
if (!(watch = plist.GetWKWatchKitApp ())) {
// the project is either a normal iOS project or an extension
if ((devices = plist.GetUIDeviceFamily ()) == IPhoneDeviceType.NotSet) {
// library projects and extension projects will not have this key, but
// we'll want them to work for both iPhones and iPads if the
// xib or storyboard supports them
devices = IPhoneDeviceType.IPhoneAndIPad;
}

// if the project is a watch extension, we'll also want to incldue watch support
watch = IsWatchExtension (plist);
} else {
// the project is a WatchApp, only include watch support
}
} else {
devices = IPhoneDeviceType.IPhoneAndIPad;
}

if ((devices & IPhoneDeviceType.IPhone) != 0)
yield return "iphone";

if ((devices & IPhoneDeviceType.IPad) != 0)
yield return "ipad";

if (watch)
yield return "watch";
}
}
}
6 changes: 4 additions & 2 deletions msbuild/Xamarin.Shared/Xamarin.Shared.targets
Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,7 @@ Copyright (C) 2018 Microsoft. All rights reserved.
<Target Name="_CoreCompileImageAssets"
Inputs="@(ImageAsset);$(_AppManifest)"
Outputs="$(_ACTool_PartialAppManifestCache);$(_ACTool_BundleResourceCache)"
DependsOnTargets="_DetectAppManifest;_GetMinimumOSVersion;_DetectSdkLocations;_BeforeCoreCompileImageAssets;_GetMinimumOSVersion;_DetectSigningIdentity">
DependsOnTargets="_DetectAppManifest;_GetMinimumOSVersion;_DetectSdkLocations;_BeforeCoreCompileImageAssets;_GetMinimumOSVersion;_DetectSigningIdentity;_ComputeTargetFrameworkMoniker">

<ACTool
SessionId="$(BuildSessionId)"
Expand All @@ -416,7 +416,9 @@ Copyright (C) 2018 Microsoft. All rights reserved.
SdkBinPath="$(_SdkBinPath)"
SdkUsrPath="$(_SdkUsrPath)"
SdkPlatform="$(_SdkPlatform)"
SdkVersion="$(_SdkVersion)">
SdkVersion="$(_SdkVersion)"
TargetFrameworkMoniker="$(_ComputedTargetFrameworkMoniker)"
>
<Output TaskParameter="PartialAppManifest" ItemName="_PartialAppManifest" />
<Output TaskParameter="BundleResources" ItemName="_BundleResourceWithLogicalName" />

Expand Down
58 changes: 0 additions & 58 deletions msbuild/Xamarin.iOS.Tasks.Core/Tasks/ACToolTaskBase.cs

This file was deleted.

1 change: 1 addition & 0 deletions msbuild/Xamarin.iOS.Tasks/Tasks/ACTool.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
using Microsoft.Build.Framework;
using Xamarin.MacDev.Tasks;
using Xamarin.Messaging.Build.Client;

namespace Xamarin.iOS.Tasks {
Expand Down

6 comments on commit 3a96cb0

@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 Build. ✅

Tests passed on Build.

API diff

✅ API Diff from stable

View API diff

Packages generated

View packages

🎉 All 182 tests passed 🎉

Pipeline on Agent XAMBOT-1028

@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 Mac Mojave (10.14) ❌

Tests failed on Mac Mojave (10.14).

Failed tests are:

  • apitest
  • xammac_tests

Pipeline on Agent

@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 Mac High Sierra (10.13) ❌

Tests failed on Mac High Sierra (10.13).

Failed tests are:

  • apitest
  • xammac_tests

Pipeline on Agent

@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 VSTS: device tests iOS32b ❌

Tests failed on VSTS: device tests iOS32b.

Test results

1 tests failed, 169 tests' device not found, 5 tests passed.

Failed tests

  • monotouch-test/Mac Catalyst/Debug: BuildFailure

Pipeline on Agent XI-CAPTAIN-MARVEL'

@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 VSTS: device tests iOS ❌

Tests failed on VSTS: device tests iOS.

Test results

159 tests failed, 4 tests passed.

Failed tests

  • monotouch-test/Mac Catalyst/Debug: BuildFailure
  • monotouch-test/iOS Unified 64-bits - device/Debug: BuildFailure
  • monotouch-test/iOS Unified 64-bits - device/AssemblyBuildTarget: dylib (debug): BuildFailure
  • monotouch-test/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (debug): BuildFailure
  • monotouch-test/iOS Unified 64-bits - device/AssemblyBuildTarget: dylib (debug, profiling): BuildFailure
  • monotouch-test/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (debug, profiling): BuildFailure
  • monotouch-test/iOS Unified 64-bits - device/Release: BuildFailure
  • monotouch-test/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (release): BuildFailure
  • monotouch-test/iOS Unified 64-bits - device/Debug (dynamic registrar): BuildFailure
  • monotouch-test/iOS Unified 64-bits - device/Release (all optimizations): BuildFailure
  • monotouch-test/iOS Unified 64-bits - device/Debug (all optimizations): BuildFailure
  • monotouch-test/iOS Unified 64-bits - device/Debug: SGenConc: BuildFailure
  • monotouch-test/iOS Unified 64-bits - device/Debug (interpreter): BuildFailure
  • monotouch-test/iOS Unified 64-bits - device/Debug (interpreter -mscorlib): BuildFailure
  • monotouch-test/iOS Unified 64-bits - device/Release (interpreter -mscorlib): BuildFailure
  • dont link/Mac Catalyst/Debug: BuildFailure
  • dont link/iOS Unified 64-bits - device/Debug: HarnessException (Harness exception for 'dont link': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC01'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/141/s/xamarin-macios/tests/xharness/AppRunner.cs:247
    at Xharness.Jenkins.TestTasks.RunDevice.RunTestAsync () [0x00ac4] in /Users/xamarinqa/azdo/_work/141/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/RunDevice.cs:163
    at Xharness.Jenkins.TestTasks.RunDevice.RunTestAsync () [0x0129e] in /Users/xamarinqa/azdo/_work/141/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/RunDevice.cs:229
    at Xharness.Jenkins.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/141/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/RunTest.cs:109
    at Xharness.Jenkins.TestTasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/141/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/TestTask.cs:283 )
  • dont link/iOS Unified 64-bits - device/AssemblyBuildTarget: dylib (debug): HarnessException (Harness exception for 'dont link': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC01'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/141/s/xamarin-macios/tests/xharness/AppRunner.cs:247
    at Xharness.Jenkins.TestTasks.RunDevice.RunTestAsync () [0x00ac4] in /Users/xamarinqa/azdo/_work/141/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/RunDevice.cs:163
    at Xharness.Jenkins.TestTasks.RunDevice.RunTestAsync () [0x0129e] in /Users/xamarinqa/azdo/_work/141/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/RunDevice.cs:229
    at Xharness.Jenkins.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/141/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/RunTest.cs:109
    at Xharness.Jenkins.TestTasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/141/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/TestTask.cs:283 )
  • dont link/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (debug): HarnessException (Harness exception for 'dont link': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC01'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/141/s/xamarin-macios/tests/xharness/AppRunner.cs:247
    at Xharness.Jenkins.TestTasks.RunDevice.RunTestAsync () [0x00ac4] in /Users/xamarinqa/azdo/_work/141/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/RunDevice.cs:163
    at Xharness.Jenkins.TestTasks.RunDevice.RunTestAsync () [0x0129e] in /Users/xamarinqa/azdo/_work/141/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/RunDevice.cs:229
    at Xharness.Jenkins.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/141/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/RunTest.cs:109
    at Xharness.Jenkins.TestTasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/141/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/TestTask.cs:283 )
  • dont link/iOS Unified 64-bits - device/AssemblyBuildTarget: dylib (debug, profiling): HarnessException (Harness exception for 'dont link': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC01'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/141/s/xamarin-macios/tests/xharness/AppRunner.cs:247
    at Xharness.Jenkins.TestTasks.RunDevice.RunTestAsync () [0x00ac4] in /Users/xamarinqa/azdo/_work/141/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/RunDevice.cs:163
    at Xharness.Jenkins.TestTasks.RunDevice.RunTestAsync () [0x0129e] in /Users/xamarinqa/azdo/_work/141/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/RunDevice.cs:229
    at Xharness.Jenkins.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/141/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/RunTest.cs:109
    at Xharness.Jenkins.TestTasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/141/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/TestTask.cs:283 )
  • dont link/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (debug, profiling): HarnessException (Harness exception for 'dont link': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC01'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/141/s/xamarin-macios/tests/xharness/AppRunner.cs:247
    at Xharness.Jenkins.TestTasks.RunDevice.RunTestAsync () [0x00ac4] in /Users/xamarinqa/azdo/_work/141/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/RunDevice.cs:163
    at Xharness.Jenkins.TestTasks.RunDevice.RunTestAsync () [0x0129e] in /Users/xamarinqa/azdo/_work/141/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/RunDevice.cs:229
    at Xharness.Jenkins.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/141/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/RunTest.cs:109
    at Xharness.Jenkins.TestTasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/141/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/TestTask.cs:283 )
  • dont link/iOS Unified 64-bits - device/Release: HarnessException (Harness exception for 'dont link': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC01'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/141/s/xamarin-macios/tests/xharness/AppRunner.cs:247
    at Xharness.Jenkins.TestTasks.RunDevice.RunTestAsync () [0x00ac4] in /Users/xamarinqa/azdo/_work/141/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/RunDevice.cs:163
    at Xharness.Jenkins.TestTasks.RunDevice.RunTestAsync () [0x0129e] in /Users/xamarinqa/azdo/_work/141/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/RunDevice.cs:229
    at Xharness.Jenkins.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/141/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/RunTest.cs:109
    at Xharness.Jenkins.TestTasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/141/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/TestTask.cs:283 )
  • dont link/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (release): HarnessException (Harness exception for 'dont link': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC01'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/141/s/xamarin-macios/tests/xharness/AppRunner.cs:247
    at Xharness.Jenkins.TestTasks.RunDevice.RunTestAsync () [0x00ac4] in /Users/xamarinqa/azdo/_work/141/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/RunDevice.cs:163
    at Xharness.Jenkins.TestTasks.RunDevice.RunTestAsync () [0x0129e] in /Users/xamarinqa/azdo/_work/141/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/RunDevice.cs:229
    at Xharness.Jenkins.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/141/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/RunTest.cs:109
    at Xharness.Jenkins.TestTasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/141/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/TestTask.cs:283 )
  • fsharp/iOS Unified 64-bits - device/Debug: HarnessException (Harness exception for 'fsharp': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC01'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/141/s/xamarin-macios/tests/xharness/AppRunner.cs:247
    at Xharness.Jenkins.TestTasks.RunDevice.RunTestAsync () [0x00ac4] in /Users/xamarinqa/azdo/_work/141/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/RunDevice.cs:163
    at Xharness.Jenkins.TestTasks.RunDevice.RunTestAsync () [0x0129e] in /Users/xamarinqa/azdo/_work/141/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/RunDevice.cs:229
    at Xharness.Jenkins.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/141/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/RunTest.cs:109
    at Xharness.Jenkins.TestTasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/141/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/TestTask.cs:283 )
  • fsharp/iOS Unified 64-bits - device/AssemblyBuildTarget: dylib (debug): HarnessException (Harness exception for 'fsharp': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC01'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/141/s/xamarin-macios/tests/xharness/AppRunner.cs:247
    at Xharness.Jenkins.TestTasks.RunDevice.RunTestAsync () [0x00ac4] in /Users/xamarinqa/azdo/_work/141/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/RunDevice.cs:163
    at Xharness.Jenkins.TestTasks.RunDevice.RunTestAsync () [0x0129e] in /Users/xamarinqa/azdo/_work/141/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/RunDevice.cs:229
    at Xharness.Jenkins.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/141/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/RunTest.cs:109
    at Xharness.Jenkins.TestTasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/141/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/TestTask.cs:283 )
  • fsharp/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (debug): HarnessException (Harness exception for 'fsharp': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC01'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/141/s/xamarin-macios/tests/xharness/AppRunner.cs:247
    at Xharness.Jenkins.TestTasks.RunDevice.RunTestAsync () [0x00ac4] in /Users/xamarinqa/azdo/_work/141/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/RunDevice.cs:163
    at Xharness.Jenkins.TestTasks.RunDevice.RunTestAsync () [0x0129e] in /Users/xamarinqa/azdo/_work/141/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/RunDevice.cs:229
    at Xharness.Jenkins.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/141/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/RunTest.cs:109
    at Xharness.Jenkins.TestTasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/141/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/TestTask.cs:283 )
  • fsharp/iOS Unified 64-bits - device/AssemblyBuildTarget: dylib (debug, profiling): HarnessException (Harness exception for 'fsharp': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC01'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/141/s/xamarin-macios/tests/xharness/AppRunner.cs:247
    at Xharness.Jenkins.TestTasks.RunDevice.RunTestAsync () [0x00ac4] in /Users/xamarinqa/azdo/_work/141/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/RunDevice.cs:163
    at Xharness.Jenkins.TestTasks.RunDevice.RunTestAsync () [0x0129e] in /Users/xamarinqa/azdo/_work/141/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/RunDevice.cs:229
    at Xharness.Jenkins.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/141/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/RunTest.cs:109
    at Xharness.Jenkins.TestTasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/141/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/TestTask.cs:283 )
  • fsharp/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (debug, profiling): HarnessException (Harness exception for 'fsharp': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC01'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/141/s/xamarin-macios/tests/xharness/AppRunner.cs:247
    at Xharness.Jenkins.TestTasks.RunDevice.RunTestAsync () [0x00ac4] in /Users/xamarinqa/azdo/_work/141/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/RunDevice.cs:163
    at Xharness.Jenkins.TestTasks.RunDevice.RunTestAsync () [0x0129e] in /Users/xamarinqa/azdo/_work/141/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/RunDevice.cs:229
    at Xharness.Jenkins.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/141/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/RunTest.cs:109
    at Xharness.Jenkins.TestTasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/141/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/TestTask.cs:283 )
  • fsharp/iOS Unified 64-bits - device/Release: HarnessException (Harness exception for 'fsharp': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC01'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/141/s/xamarin-macios/tests/xharness/AppRunner.cs:247
    at Xharness.Jenkins.TestTasks.RunDevice.RunTestAsync () [0x00ac4] in /Users/xamarinqa/azdo/_work/141/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/RunDevice.cs:163
    at Xharness.Jenkins.TestTasks.RunDevice.RunTestAsync () [0x0129e] in /Users/xamarinqa/azdo/_work/141/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/RunDevice.cs:229
    at Xharness.Jenkins.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/141/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/RunTest.cs:109
    at Xharness.Jenkins.TestTasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/141/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/TestTask.cs:283 )
  • fsharp/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (release): HarnessException (Harness exception for 'fsharp': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC01'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/141/s/xamarin-macios/tests/xharness/AppRunner.cs:247
    at Xharness.Jenkins.TestTasks.RunDevice.RunTestAsync () [0x00ac4] in /Users/xamarinqa/azdo/_work/141/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/RunDevice.cs:163
    at Xharness.Jenkins.TestTasks.RunDevice.RunTestAsync () [0x0129e] in /Users/xamarinqa/azdo/_work/141/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/RunDevice.cs:229
    at Xharness.Jenkins.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/141/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/RunTest.cs:109
    at Xharness.Jenkins.TestTasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/141/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/TestTask.cs:283 )
  • framework-test/iOS Unified 64-bits - device/Debug: HarnessException (Harness exception for 'framework-test': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC01'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/141/s/xamarin-macios/tests/xharness/AppRunner.cs:247
    at Xharness.Jenkins.TestTasks.RunDevice.RunTestAsync () [0x00ac4] in /Users/xamarinqa/azdo/_work/141/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/RunDevice.cs:163
    at Xharness.Jenkins.TestTasks.RunDevice.RunTestAsync () [0x0129e] in /Users/xamarinqa/azdo/_work/141/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/RunDevice.cs:229
    at Xharness.Jenkins.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/141/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/RunTest.cs:109
    at Xharness.Jenkins.TestTasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/141/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/TestTask.cs:283 )
  • framework-test/iOS Unified 64-bits - device/AssemblyBuildTarget: dylib (debug): HarnessException (Harness exception for 'framework-test': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC01'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/141/s/xamarin-macios/tests/xharness/AppRunner.cs:247
    at Xharness.Jenkins.TestTasks.RunDevice.RunTestAsync () [0x00ac4] in /Users/xamarinqa/azdo/_work/141/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/RunDevice.cs:163
    at Xharness.Jenkins.TestTasks.RunDevice.RunTestAsync () [0x0129e] in /Users/xamarinqa/azdo/_work/141/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/RunDevice.cs:229
    at Xharness.Jenkins.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/141/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/RunTest.cs:109
    at Xharness.Jenkins.TestTasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/141/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/TestTask.cs:283 )
  • framework-test/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (debug): HarnessException (Harness exception for 'framework-test': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC01'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/141/s/xamarin-macios/tests/xharness/AppRunner.cs:247
    at Xharness.Jenkins.TestTasks.RunDevice.RunTestAsync () [0x00ac4] in /Users/xamarinqa/azdo/_work/141/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/RunDevice.cs:163
    at Xharness.Jenkins.TestTasks.RunDevice.RunTestAsync () [0x0129e] in /Users/xamarinqa/azdo/_work/141/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/RunDevice.cs:229
    at Xharness.Jenkins.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/141/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/RunTest.cs:109
    at Xharness.Jenkins.TestTasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/141/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/TestTask.cs:283 )
  • framework-test/iOS Unified 64-bits - device/AssemblyBuildTarget: dylib (debug, profiling): HarnessException (Harness exception for 'framework-test': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC01'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/141/s/xamarin-macios/tests/xharness/AppRunner.cs:247
    at Xharness.Jenkins.TestTasks.RunDevice.RunTestAsync () [0x00ac4] in /Users/xamarinqa/azdo/_work/141/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/RunDevice.cs:163
    at Xharness.Jenkins.TestTasks.RunDevice.RunTestAsync () [0x0129e] in /Users/xamarinqa/azdo/_work/141/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/RunDevice.cs:229
    at Xharness.Jenkins.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/141/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/RunTest.cs:109
    at Xharness.Jenkins.TestTasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/141/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/TestTask.cs:283 )
  • framework-test/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (debug, profiling): HarnessException (Harness exception for 'framework-test': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC01'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [\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 failed on VSTS: device tests tvOS ❌

Tests failed on VSTS: device tests tvOS.

Test results

157 tests failed, 5 tests passed.

Failed tests

  • monotouch-test/Mac Catalyst/Debug: BuildFailure
  • monotouch-test/tvOS - device/Debug: BuildFailure
  • monotouch-test/tvOS - device/AssemblyBuildTarget: dylib (debug): BuildFailure
  • monotouch-test/tvOS - device/AssemblyBuildTarget: SDK framework (debug): BuildFailure
  • monotouch-test/tvOS - device/AssemblyBuildTarget: dylib (debug, profiling): BuildFailure
  • monotouch-test/tvOS - device/AssemblyBuildTarget: SDK framework (debug, profiling): BuildFailure
  • monotouch-test/tvOS - device/Release: BuildFailure
  • monotouch-test/tvOS - device/AssemblyBuildTarget: SDK framework (release): BuildFailure
  • monotouch-test/tvOS - device/Debug (dynamic registrar): BuildFailure
  • monotouch-test/tvOS - device/Release (all optimizations): BuildFailure
  • monotouch-test/tvOS - device/Debug (all optimizations): BuildFailure
  • monotouch-test/tvOS - device/Debug: SGenConc: BuildFailure
  • monotouch-test/tvOS - device/Debug (interpreter): BuildFailure
  • monotouch-test/tvOS - device/Debug (interpreter -mscorlib): BuildFailure
  • monotouch-test/tvOS - device/Release (interpreter -mscorlib): BuildFailure
  • fsharp/tvOS - device/Debug: Failed (Install failed, exit code: 1.)
  • fsharp/tvOS - device/AssemblyBuildTarget: dylib (debug): Failed (Install failed, exit code: 1.)
  • fsharp/tvOS - device/AssemblyBuildTarget: SDK framework (debug): Failed (Install failed, exit code: 1.)
  • fsharp/tvOS - device/AssemblyBuildTarget: dylib (debug, profiling): Failed (Install failed, exit code: 1.)
  • fsharp/tvOS - device/AssemblyBuildTarget: SDK framework (debug, profiling): Failed (Install failed, exit code: 1.)
  • fsharp/tvOS - device/Release: Failed (Install failed, exit code: 1.)
  • fsharp/tvOS - device/AssemblyBuildTarget: SDK framework (release): Failed (Install failed, exit code: 1.)
  • framework-test/tvOS - device/Debug: Failed (Install failed, exit code: 1.)
  • framework-test/tvOS - device/AssemblyBuildTarget: dylib (debug): Failed (Install failed, exit code: 1.)
  • framework-test/tvOS - device/AssemblyBuildTarget: SDK framework (debug): Failed (Install failed, exit code: 1.)
  • framework-test/tvOS - device/AssemblyBuildTarget: dylib (debug, profiling): Failed (Install failed, exit code: 1.)
  • framework-test/tvOS - device/AssemblyBuildTarget: SDK framework (debug, profiling): Failed (Install failed, exit code: 1.)
  • framework-test/tvOS - device/Release: Failed (Install failed, exit code: 1.)
  • framework-test/tvOS - device/AssemblyBuildTarget: SDK framework (release): Failed (Install failed, exit code: 1.)
  • xcframework-test/tvOS - device/Debug: Failed (Install failed, exit code: 1.)
  • xcframework-test/tvOS - device/AssemblyBuildTarget: dylib (debug): BuildFailure
  • xcframework-test/tvOS - device/AssemblyBuildTarget: SDK framework (debug): Failed (Install failed, exit code: 1.)
  • xcframework-test/tvOS - device/AssemblyBuildTarget: dylib (debug, profiling): BuildFailure
  • xcframework-test/tvOS - device/AssemblyBuildTarget: SDK framework (debug, profiling): Failed (Install failed, exit code: 1.)
  • xcframework-test/tvOS - device/Release: Failed (Install failed, exit code: 1.)
  • xcframework-test/tvOS - device/AssemblyBuildTarget: SDK framework (release): Failed (Install failed, exit code: 1.)
  • interdependent-binding-projects/tvOS - device/Debug: Failed (Install failed, exit code: 1.)
  • interdependent-binding-projects/tvOS - device/AssemblyBuildTarget: dylib (debug): Failed (Install failed, exit code: 1.)
  • interdependent-binding-projects/tvOS - device/AssemblyBuildTarget: SDK framework (debug): Failed (Install failed, exit code: 1.)
  • interdependent-binding-projects/tvOS - device/AssemblyBuildTarget: dylib (debug, profiling): Failed (Install failed, exit code: 1.)
  • interdependent-binding-projects/tvOS - device/AssemblyBuildTarget: SDK framework (debug, profiling): Failed (Install failed, exit code: 1.)
  • interdependent-binding-projects/tvOS - device/Release: Failed (Install failed, exit code: 1.)
  • interdependent-binding-projects/tvOS - device/AssemblyBuildTarget: SDK framework (release): Failed (Install failed, exit code: 1.)
  • dont link/tvOS - device/Debug: Failed (Install failed, exit code: 1.)
  • dont link/tvOS - device/AssemblyBuildTarget: dylib (debug): Failed (Install failed, exit code: 1.)
  • dont link/tvOS - device/AssemblyBuildTarget: SDK framework (debug): Failed (Install failed, exit code: 1.)
  • dont link/tvOS - device/AssemblyBuildTarget: dylib (debug, profiling): Failed (Install failed, exit code: 1.)
  • dont link/tvOS - device/AssemblyBuildTarget: SDK framework (debug, profiling): Failed (Install failed, exit code: 1.)
  • dont link/tvOS - device/Release: Failed (Install failed, exit code: 1.)
  • link all/tvOS - device/Debug: Failed (Install failed, exit code: 1.)
  • link all/tvOS - device/AssemblyBuildTarget: dylib (debug): Failed (Install failed, exit code: 1.)
  • link all/tvOS - device/AssemblyBuildTarget: SDK framework (debug): Failed (Install failed, exit code: 1.)
  • link all/tvOS - device/AssemblyBuildTarget: dylib (debug, profiling): Failed (Install failed, exit code: 1.)
  • link all/tvOS - device/AssemblyBuildTarget: SDK framework (debug, profiling): Failed (Install failed, exit code: 1.)
  • link all/tvOS - device/Release: Failed (Install failed, exit code: 1.)
  • link all/tvOS - device/AssemblyBuildTarget: SDK framework (release): Failed (Install failed, exit code: 1.)
  • link sdk/tvOS - device/Debug: Failed (Install failed, exit code: 1.)
  • link sdk/tvOS - device/AssemblyBuildTarget: dylib (debug): Failed (Install failed, exit code: 1.)
  • link sdk/tvOS - device/AssemblyBuildTarget: SDK framework (debug): Failed (Install failed, exit code: 1.)
  • link sdk/tvOS - device/AssemblyBuildTarget: dylib (debug, profiling): Failed (Install failed, exit code: 1.)
  • link sdk/tvOS - device/AssemblyBuildTarget: SDK framework (debug, profiling): Failed (Install failed, exit code: 1.)
  • link sdk/tvOS - device/Release: Failed (Install failed, exit code: 1.)
  • link sdk/tvOS - device/AssemblyBuildTarget: SDK framework (release): Failed (Install failed, exit code: 1.)
  • mono-native-compat/tvOS - device/Debug: Failed (Install failed, exit code: 1.)
  • mono-native-compat/tvOS - device/AssemblyBuildTarget: dylib (debug): Failed (Install failed, exit code: 1.)
  • mono-native-compat/tvOS - device/AssemblyBuildTarget: SDK framework (debug): Failed (Install failed, exit code: 1.)
  • mono-native-compat/tvOS - device/AssemblyBuildTarget: dylib (debug, profiling): Failed (Install failed, exit code: 1.)
  • mono-native-compat/tvOS - device/AssemblyBuildTarget: SDK framework (debug, profiling): Failed (Install failed, exit code: 1.)
  • mono-native-compat/tvOS - device/Release: Failed (Install failed, exit code: 1.)
  • mono-native-compat/tvOS - device/AssemblyBuildTarget: SDK framework (release): Failed (Install failed, exit code: 1.)
  • mono-native-unified/tvOS - device/Debug: Failed (Install failed, exit code: 1.)
  • mono-native-unified/tvOS - device/AssemblyBuildTarget: dylib (debug): Failed (Install failed, exit code: 1.)
  • mono-native-unified/tvOS - device/AssemblyBuildTarget: SDK framework (debug): Failed (Install failed, exit code: 1.)
  • mono-native-unified/tvOS - device/AssemblyBuildTarget: dylib (debug, profiling): Failed (Install failed, exit code: 1.)
  • mono-native-unified/tvOS - device/AssemblyBuildTarget: SDK framework (debug, profiling): Failed (Install failed, exit code: 1.)
  • mono-native-unified/tvOS - device/Release: Failed (Install failed, exit code: 1.)
  • mono-native-unified/tvOS - device/AssemblyBuildTarget: SDK framework (release): Failed (Install failed, exit code: 1.)
  • [NUnit] Mono BCL tests group 1/tvOS - device/Debug: Failed (Install failed, exit code: 1.)
  • [NUnit] Mono BCL tests group 1/tvOS - device/AssemblyBuildTarget: dylib (debug): Failed (Install failed, exit code: 1.)
  • [NUnit] Mono BCL tests group 1/tvOS - device/AssemblyBuildTarget: SDK framework (debug): Failed (Install failed, exit code: 1.)
  • [NUnit] Mono BCL tests group 1/tvOS - device/AssemblyBuildTarget: dylib (debug, profiling): Failed (Install failed, exit code: 1.)
  • [NUnit] Mono BCL tests group 1/tvOS - device/AssemblyBuildTarget: SDK framework (debug, profiling): Failed (Install failed, exit code: 1.)
  • [NUnit] Mono BCL tests group 1/tvOS - device/Release: Failed (Install failed, exit code: 1.)
  • [NUnit] Mono BCL tests group 1/tvOS - device/AssemblyBuildTarget: SDK framework (release): Failed (Install failed, exit code: 1.)
  • [NUnit] Mono BCL tests group 2/tvOS - device/Debug: Failed (Install failed, exit code: 1.)
  • [NUnit] Mono BCL tests group 2/tvOS - device/AssemblyBuildTarget: dylib (debug): Failed (Install failed, exit code: 1.)
  • [NUnit] Mono BCL tests group 2/tvOS - device/AssemblyBuildTarget: SDK framework (debug): Failed (Install failed, exit code: 1.)
  • [NUnit] Mono BCL tests group 2/tvOS - device/AssemblyBuildTarget: dylib (debug, profiling): Failed (Install failed, exit code: 1.)
  • [NUnit] Mono BCL tests group 2/tvOS - device/AssemblyBuildTarget: SDK framework (debug, profiling): Failed (Install failed, exit code: 1.)
  • [NUnit] Mono BCL tests group 2/tvOS - device/Release: Failed (Install failed, exit code: 1.)
  • [NUnit] Mono BCL tests group 2/tvOS - device/AssemblyBuildTarget: SDK framework (release): Failed (Install failed, exit code: 1.)
  • [xUnit] Mono BCL tests group 3/tvOS - device/Debug: Failed (Install failed, exit code: 1.)
  • [xUnit] Mono BCL tests group 3/tvOS - device/AssemblyBuildTarget: dylib (debug): Failed (Install failed, exit code: 1.)
  • [xUnit] Mono BCL tests group 3/tvOS - device/AssemblyBuildTarget: SDK framework (debug): Failed (Install failed, exit code: 1.)
  • [xUnit] Mono BCL tests group 3/tvOS - device/AssemblyBuildTarget: dylib (debug, profiling): Failed (Install failed, exit code: 1.)
  • [xUnit] Mono BCL tests group 3/tvOS - device/AssemblyBuildTarget: SDK framework (debug, profiling): Failed (Install failed, exit code: 1.)
  • [xUnit] Mono BCL tests group 3/tvOS - device/Release: Failed (Install failed, exit code: 1.)
  • [xUnit] Mono BCL tests group 3/tvOS - device/AssemblyBuildTarget: SDK framework (release): Failed (Install failed, exit code: 1.)
  • [xUnit] Mono BCL tests group 4/tvOS - device/Debug: Failed (Install failed, exit code: 1.)
  • [xUnit] Mono BCL tests group 4/tvOS - device/AssemblyBuildTarget: dylib (debug): Failed (Install failed, exit code: 1.)
  • [xUnit] Mono BCL tests group 4/tvOS - device/AssemblyBuildTarget: SDK framework (debug): Failed (Install failed, exit code: 1.)
  • [xUnit] Mono BCL tests group 4/tvOS - device/AssemblyBuildTarget: dylib (debug, profiling): Failed (Install failed, exit code: 1.)
  • [xUnit] Mono BCL tests group 4/tvOS - device/AssemblyBuildTarget: SDK framework (debug, profiling): Failed (Install failed, exit code: 1.)
  • [xUnit] Mono BCL tests group 4/tvOS - device/Release: Failed (Install failed, exit code: 1.)
  • [xUnit] Mono BCL tests group 4/tvOS - device/AssemblyBuildTarget: SDK framework (release): Failed (Install failed, exit code: 1.)
  • [xUnit] Mono BCL tests group 5/tvOS - device/Debug: Failed (Install failed, exit code: 1.)
  • [xUnit] Mono BCL tests group 5/tvOS - device/AssemblyBuildTarget: dylib (debug): Failed (Install failed, exit code: 1.)
  • [xUnit] Mono BCL tests group 5/tvOS - device/AssemblyBuildTarget: SDK framework (debug): Failed (Install failed, exit code: 1.)
  • [xUnit] Mono BCL tests group 5/tvOS - device/AssemblyBuildTarget: dylib (debug, profiling): Failed (Install failed, exit code: 1.)
  • [xUnit] Mono BCL tests group 5/tvOS - device/AssemblyBuildTarget: SDK framework (debug, profiling): Failed (Install failed, exit code: 1.)
  • [xUnit] Mono BCL tests group 5/tvOS - device/Release: Failed (Install failed, exit code: 1.)
  • [xUnit] Mono BCL tests group 5/tvOS - device/AssemblyBuildTarget: SDK framework (release): Failed (Install failed, exit code: 1.)
  • mscorlib Part 1/tvOS - device/Debug: Failed (Install failed, exit code: 1.)
  • mscorlib Part 1/tvOS - device/AssemblyBuildTarget: dylib (debug): Failed (Install failed, exit code: 1.)
  • mscorlib Part 1/tvOS - device/AssemblyBuildTarget: SDK framework (debug): Failed (Install failed, exit code: 1.)
  • mscorlib Part 1/tvOS - device/AssemblyBuildTarget: dylib (debug, profiling): Failed (Install failed, exit code: 1.)
  • mscorlib Part 1/tvOS - device/AssemblyBuildTarget: SDK framework (debug, profiling): Failed (Install failed, exit code: 1.)
  • mscorlib Part 1/tvOS - device/Release: Failed (Install failed, exit code: 1.)
  • mscorlib Part 1/tvOS - device/AssemblyBuildTarget: SDK framework (release): Failed (Install failed, exit code: 1.)
  • mscorlib Part 1/tvOS - device/Debug: SGenConc: Failed (Install failed, exit code: 1.)
  • mscorlib Part 2/tvOS - device/Debug: Failed (Install failed, exit code: 1.)
  • mscorlib Part 2/tvOS - device/AssemblyBuildTarget: dylib (debug): Failed (Install failed, exit code: 1.)
  • mscorlib Part 2/tvOS - device/AssemblyBuildTarget: SDK framework (debug): Failed (Install failed, exit code: 1.)
  • mscorlib Part 2/tvOS - device/AssemblyBuildTarget: dylib (debug, profiling): Failed (Install failed, exit code: 1.)
  • mscorlib Part 2/tvOS - device/AssemblyBuildTarget: SDK framework (debug, profiling): Failed (Install failed, exit code: 1.)
  • mscorlib Part 2/tvOS - device/Release: Failed (Install failed, exit code: 1.)
  • mscorlib Part 2/tvOS - device/AssemblyBuildTarget: SDK framework (release): Failed (Install failed, exit code: 1.)
  • mscorlib Part 2/tvOS - device/Debug: SGenConc: Failed (Install failed, exit code: 1.)
  • mscorlib Part 3/tvOS - device/Debug: Failed (Install failed, exit code: 1.)
  • mscorlib Part 3/tvOS - device/AssemblyBuildTarget: dylib (debug): Failed (Install failed, exit code: 1.)
  • mscorlib Part 3/tvOS - device/AssemblyBuildTarget: SDK framework (debug): Failed (Install failed, exit code: 1.)
  • mscorlib Part 3/tvOS - device/AssemblyBuildTarget: dylib (debug, profiling): Failed (Install failed, exit code: 1.)
  • mscorlib Part 3/tvOS - device/AssemblyBuildTarget: SDK framework (debug, profiling): Failed (Install failed, exit code: 1.)
  • mscorlib Part 3/tvOS - device/Release: Failed (Install failed, exit code: 1.)
  • mscorlib Part 3/tvOS - device/AssemblyBuildTarget: SDK framework (release): Failed (Install failed, exit code: 1.)
  • mscorlib Part 3/tvOS - device/Debug: SGenConc: Failed (Install failed, exit code: 1.)
  • [xUnit] Mono SystemCoreXunit Part 1/tvOS - device/Debug: Failed (Install failed, exit code: 1.)
  • [xUnit] Mono SystemCoreXunit Part 1/tvOS - device/AssemblyBuildTarget: dylib (debug): Failed (Install failed, exit code: 1.)
  • [xUnit] Mono SystemCoreXunit Part 1/tvOS - device/AssemblyBuildTarget: SDK framework (debug): Failed (Install failed, exit code: 1.)
  • [xUnit] Mono SystemCoreXunit Part 1/tvOS - device/AssemblyBuildTarget: dylib (debug, profiling): Failed (Install failed, exit code: 1.)
  • [xUnit] Mono SystemCoreXunit Part 1/tvOS - device/AssemblyBuildTarget: SDK framework (debug, profiling): Failed (Install failed, exit code: 1.)
  • [xUnit] Mono SystemCoreXunit Part 1/tvOS - device/Release: Failed (Install failed, exit code: 1.)
  • [xUnit] Mono SystemCoreXunit Part 1/tvOS - device/AssemblyBuildTarget: SDK framework (release): Failed (Install failed, exit code: 1.)
  • [xUnit] Mono SystemCoreXunit Part 2/tvOS - device/Debug: Failed (Install failed, exit code: 1.)
  • [xUnit] Mono SystemCoreXunit Part 2/tvOS - device/AssemblyBuildTarget: dylib (debug): Failed (Install failed, exit code: 1.)
  • [xUnit] Mono SystemCoreXunit Part 2/tvOS - device/AssemblyBuildTarget: SDK framework (debug): Failed (Install failed, exit code: 1.)
  • [xUnit] Mono SystemCoreXunit Part 2/tvOS - device/AssemblyBuildTarget: dylib (debug, profiling): Failed (Install failed, exit code: 1.)
  • [xUnit] Mono SystemCoreXunit Part 2/tvOS - device/AssemblyBuildTarget: SDK framework (debug, profiling): Failed (Install failed, exit code: 1.)
  • [xUnit] Mono SystemCoreXunit Part 2/tvOS - device/Release: Failed (Install failed, exit code: 1.)
  • [xUnit] Mono SystemCoreXunit Part 2/tvOS - device/AssemblyBuildTarget: SDK framework (release): Failed (Install failed, exit code: 1.)
  • [xUnit] Mono SystemXunit/tvOS - device/Debug: Failed (Install failed, exit code: 1.)
  • [xUnit] Mono SystemXunit/tvOS - device/AssemblyBuildTarget: dylib (debug): Failed (Install failed, exit code: 1.)
  • [xUnit] Mono SystemXunit/tvOS - device/AssemblyBuildTarget: SDK framework (debug): Failed (Install failed, exit code: 1.)
  • [xUnit] Mono SystemXunit/tvOS - device/AssemblyBuildTarget: dylib (debug, profiling): Failed (Install failed, exit code: 1.)
  • [xUnit] Mono SystemXunit/tvOS - device/AssemblyBuildTarget: SDK framework (debug, profiling): Failed (Install failed, exit code: 1.)
  • [xUnit] Mono SystemXunit/tvOS - device/Release: Failed (Install failed, exit code: 1.)
  • [xUnit] Mono SystemXunit/tvOS - device/AssemblyBuildTarget: SDK framework (release): Failed (Install failed, exit code: 1.)

Pipeline on Agent XAMTESTMAC12

Please sign in to comment.