-
Notifications
You must be signed in to change notification settings - Fork 5.3k
Disable binplacing for DependencyInjection.Specification.Tests #49067
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
Conversation
|
Tagging subscribers to this area: @eerhardt, @maryamariyan Issue Details
|
eerhardt
left a comment
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.
LGTM
|
@ViktorHofer @briansull should we merge this immediately to unblock builds? It wasn't clear to me from #48858 (comment) how blocking the failure was. |
|
It affects our post-merge rolling "outerloop" CI job: https://dev.azure.com/dnceng/public/_build?definitionId=655&_a=summary As well as any R2R coreclr job. |
|
@BruceForstall is there anything that's going to validate this fix as part of the CI process? What's the quickest way to unblock you? |
|
Given the simplicity of the change I tend towards fast merge. Merging. |
|
My thoughts as well @ViktorHofer. I'll own the risk here. If anything breaks ping me and I'll back stuff out. |
|
I would manually kick off an outerloop job to validate, but it should automatically kick off in about 15 minutes, so I'll just let that happen. |
|
Does this change remove System.TestStructs.dll from the CORE_ROOT directory? |
|
@briansull I don’t think System.TestStructs.dll was present. Error was
That failure was due to Microsoft.Extensions.DependencyInjection.Specification.Tests which referenced it without copying it. The same assembly referenced others as well which likely would have been problems after TestStructs. This change prevents that test assembly from being copied to the directory consumed to construct CORE_ROOT. |
No description provided.