-
Notifications
You must be signed in to change notification settings - Fork 5.3k
Stop ignoring **/_.pdb files in Docker containers #38027
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
Networking stress tests running on Linux are failing in master at building runtime inside container due to a missing `_.pdb` files (e.g. `/repo/src/coreclr/src/.nuget/_.pdb`) This PR makes Docker to include those files into containers.
|
I couldn't figure out the best area label to add to this PR. Please help me learn by adding exactly one area label. |
|
Tagging subscribers to this area: @ViktorHofer |
|
/azp run runtime-libraries stress-http |
|
Azure Pipelines successfully started running 1 pipeline(s). |
|
/azp run runtime-libraries stress-ssl |
|
Azure Pipelines successfully started running 1 pipeline(s). |
| **/*.obj | ||
| **/*.pch | ||
| **/*.pdb | ||
| !**/_.pdb |
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.
It worth a comment with explanation why one kind of pdb is ignored while other allowed.
|
I think I added this change to: #35011 -- but fine to split it in a separate PR. |
|
Closing it as obsolete since #35011 was merged. |
Networking stress tests running on Linux are failing in master at building runtime inside container due to a missing
_.pdbfiles (e.g./repo/src/coreclr/src/.nuget/_.pdb) This PR makes Docker to include those files into containers.