-
Notifications
You must be signed in to change notification settings - Fork 515
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump .NET to 6.0.100-preview.2.21114.3. (#10666)
* Bump .NET to 6.0.100-preview.2.21114.3. * [dotnet-linker] Several steps are now gone, so load our custom step before the new first step (MarkStep). * [dotnet-linker] Dump the current steps if we fail to call InsertBefore/InsertAfter. * [dotnet-linker] Load the CollectAssembliesStep as the first step, and make it load every assembly. * [dotnet] Set InvariantGlobalization=true because that's the only thing .NET supports for now. * [dotnet-linker] Use recommended workaround for linker's inability to do load assemblies in custom step. * [tests] Bump version of MSBuild.StructuredLogger to get support for new log version. Otherwise this happens in tests that read binary logs: System.NotSupportedException : Unsupported log file format. Latest supported version is 9, the log file has version 10. * [introspection] Ignore P/Invokes to QCall for LogThreadPool* P/Invokes. * [dotnet-linker] Inject a dummy implementation of mono_config_parse_memory as a temporary solution for mono's removal of the same method.
- Loading branch information
1 parent
b511fce
commit 85fe634
Showing
12 changed files
with
67 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,24 @@ | ||
using System.Collections.Generic; | ||
using Mono.Cecil; | ||
|
||
namespace Xamarin.Linker { | ||
public class CollectAssembliesStep : ConfigurationAwareStep { | ||
protected override string Name { get; } = "Collect Assemblies"; | ||
protected override int ErrorCode { get; } = 2330; | ||
|
||
protected override void TryProcessAssembly (AssemblyDefinition assembly) | ||
protected override void TryProcess () | ||
{ | ||
base.TryProcessAssembly (assembly); | ||
base.TryProcess (); | ||
|
||
Configuration.Assemblies.Add (assembly); | ||
// This is a temporary workaround, we need to mark members and types, and we have to do it before | ||
// the MarkStep. However, MarkStep is the first step, and if we add another step before it, | ||
// there won't be any assemblies loaded (since MarkStep will load assemblies as needed). | ||
// This step now runs at the very beginning, using reflection to call into the linker to load all | ||
// the referenced assemblies, so that we can then have another step before MarkStep that does the | ||
// custom marking we need to do. | ||
var getReferencedAssemblies = Configuration.Context.GetType ().GetMethod ("GetReferencedAssemblies"); | ||
var assemblies = (IEnumerable<AssemblyDefinition>) getReferencedAssemblies.Invoke (Configuration.Context, new object [0]); | ||
Configuration.Assemblies.AddRange (assemblies); | ||
} | ||
} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
85fe634
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
❌ Tests failed on Build ❌
Tests failed on Build.
API diff
✅ API Diff from stable
View API diff
View packages
Test results
1 tests failed, 180 tests passed.
Failed tests
Pipeline on Agent XAMBOT-1023
85fe634
There was a problem hiding this comment.
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:
Pipeline on Agent
85fe634
There was a problem hiding this comment.
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:
Pipeline on Agent
85fe634
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🔥 Tests failed catastrophically on VSTS: device tests tvOS (no summary found). 🔥
Result file $(TEST_SUMMARY_PATH) not found.
Pipeline on Agent
85fe634
There was a problem hiding this comment.
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
158 tests failed, 5 tests passed.
Failed tests
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 )
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 )
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 )
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 )
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 )
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 )
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 )
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 )
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 )
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 )
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 )
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 )
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 )
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 )
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 )
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 )
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 )
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 )
at System.Net.Dns.Error_11001 (System.String \n\nThe message from CI is too large for the GitHub comments. You can find the full results here.
85fe634
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🔥 Tests failed catastrophically on VSTS: device tests iOS32b (no summary found). 🔥
Result file $(TEST_SUMMARY_PATH) not found.
Pipeline on Agent