-
Notifications
You must be signed in to change notification settings - Fork 795
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
Exclude FileSystemTests from parallelization #18153
Conversation
✅ No release notes required |
@majocha I am afraid we might want to do something on top of this since the current execution has crashed on Linux again :/
|
@psfinaki, I will add a small section about this to TESTGUIDE later, as you suggested. |
Yeah, currently we're at Line 223 in 65a9f1e
and apparently CI can't handle it. It was low on memory even before, so maybe it's that? |
Yeah, I remember the low memory warnings... let's see how this plays out. Thanks for taking care :) |
Alrighty, so this works although the CI still reports low memory on Linux. I've looked at a few runs, in all of them the memory gets tight during Wonder if we should make them sequential to be an the safe side? We don't have to if it brings the times back again, I am just curious. |
I think that low memory was there even before parallel testing PR.
I'm not sure it's that, given that basically all of them have I wonder if this could be related to the Internal CLR error. (0x80131506) we've seen before. We have a minidump so maybe we should open an issue about it somewhere? Maybe in dotnet/runtime? |
Failed to run : https://github.com/dotnet/fsharp/actions/runs/12373283117 |
Right, yeah it's skipping them.
Worth trying, at least maybe they can investigate it a bit :) |
Failed to run : https://github.com/dotnet/fsharp/actions/runs/12374820478 |
@psfinaki, I opened an issue for this here: dotnet/runtime#110837 with the minidump we got 3 weeks ago. |
Failed to run : https://github.com/dotnet/fsharp/actions/runs/12416108147 |
@majocha so looks like you've discovered a real issue :) |
FileSystem
is a not thread-safe resource. These tests need to be excluded from parallelization.