-
Notifications
You must be signed in to change notification settings - Fork 534
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
[One .NET] Include symbol files in runtime packs #6193
Conversation
Adds the .pdb files associated with our framework assemblies to the .NET runtime packs. This will allow them to be fast deployed or included in an .aab/.apk for Debug builds. A couple of symbol related tests have been updated to also check for Mono.Android.pdb.
The test failures here look unrelated to me |
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.
I restarted a couple test phases that had weird errors.
This seems like it adds about 3MB to each runtime pack:
So I'll comment on #6058.
A lot of tests failed, I'm going to try a rerun which should pick up the latest changes in main. |
/azp run |
Azure Pipelines successfully started running 1 pipeline(s). |
Only a legacy |
Adds the .pdb files associated with our framework assemblies to the .NET runtime packs. This will allow them to be fast deployed or included in an .aab/.apk for Debug builds. A couple of symbol related tests have been updated to also check for Mono.Android.pdb. * Don't skip net6.0 msbuild smoke tests
Adds the .pdb files associated with our framework assemblies to the .NET
runtime packs. This will allow them to be fast deployed or included in
an .aab/.apk for Debug builds. A couple of symbol related tests have
been updated to also check for Mono.Android.pdb.
I also noticed that the
SmokeTest
category was not running for thenet6.0
MSBuildDeviceIntegration tests, as the emulator smoke test jobonly runs against the
net472
test assembly. This currently doesn'tmatter as all
net6.0
smoke tests are ignored through other categoryattributes, but this fix should be needed in the future.