-
Notifications
You must be signed in to change notification settings - Fork 520
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bump .NET to 6.0.100-preview.2.21114.3. #10666
Bump .NET to 6.0.100-preview.2.21114.3. #10666
Conversation
…custom linker steps.
…efore the new first step (MarkStep).
… make it load every assembly.
…g .NET supports for now.
protected override void TryEndProcess () | ||
{ | ||
foreach (var asm in Configuration.Assemblies) | ||
System.Console.WriteLine ($"Collected assembly: {asm.FullName}"); |
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.
no need for System.
prefix
should be under a verbosity check
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.
Fixed.
foreach (var asm in Configuration.ManagedAssembliesToLink) { | ||
var ad = (AssemblyDefinition) tryResolve.Invoke (Configuration.Context, new object [] { Path.GetFileNameWithoutExtension (asm) }); | ||
if (ad != null) { | ||
Console.WriteLine ($"Loaded {asm} => {ad.FullName} => {ad.MainModule.FileName}"); |
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.
should be under a verbosity check
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.
Fixed.
if (ad != null) { | ||
Console.WriteLine ($"Loaded {asm} => {ad.FullName} => {ad.MainModule.FileName}"); | ||
} else { | ||
Console.WriteLine ($"Failed to load {asm}"); |
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.
should be reported as an error ? or warning
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.
Completely removed.
…do load assemblies in custom step.
… to the custom linker steps." This reverts commit eae95d8. We don't need it anymore.
❌ Tests failed on Build ❌Tests failed on Build. Test results44 tests failed, 2 tests passed.Failed tests
Pipeline on Agent XAMBOT-1099' |
bad bot |
/azp run |
Azure Pipelines successfully started running 1 pipeline(s). |
❌ Tests failed on Build ❌Tests failed on Build. Test results4 tests failed, 177 tests passed.Failed tests
Pipeline on Agent XAMBOT-1099' |
…ew 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.
❌ Tests failed on Build ❌Tests failed on Build. Test results1 tests failed, 180 tests passed.Failed tests
Pipeline on Agent XAMBOT-1103' |
…mory as a temporary solution for mono's removal of the same method.
✅ Tests passed on Build. ✅Tests passed on Build. 🎉 All 181 tests passed 🎉Pipeline on Agent XAMBOT-1094' |
✅ Tests passed on Build. ✅Tests passed on Build. 🎉 All 181 tests passed 🎉Pipeline on Agent XAMBOT-1095' |
This required a few other changes, because the linker changed significantly.
This is still a draft because some of the changes here aren't final (and there's some debug spew as well), I just want a CI run to find everything that breaks.