-
Notifications
You must be signed in to change notification settings - Fork 13.7k
ci: add timeout to windows disk cleanup wait #145559
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
@bors try jobs=msvc,mingw |
This comment has been minimized.
This comment has been minimized.
ci: add timeout to windows disk cleanup wait try-job: *msvc* try-job: *mingw*
You can r=me if CI is green. |
r? Kobzol |
@bors r+ |
Oh, looking at this I think an issue here may be the use of PIDs. After the process exits, the PID can be reused by new processes. |
Maybe we could also store and check the process name? |
Possibly. Though it's a shell script so that might not be too useful. Another option is to store and check the process start time. PID + start time will be unique. A more invasive change would be to keep the cleanup script running until it's told to finish (or maybe killed). But this requires some way to communicate either when something is waiting or when it's done. |
Since it seems like the issue is seriously affecting the queue, I'll bump the priority on this workaround in case it doesn't make the next rollup. @bors p=6 |
Good idea. This isn't included in the 33-PR rollup, so anything that can help is a good idea. |
☀️ Test successful - checks-actions |
What is this?This is an experimental post-merge analysis report that shows differences in test outcomes between the merged PR and its parent PR.Comparing 9eb4a26 (parent) -> b96868f (this PR) Test differencesShow 2 test diffs2 doctest diffs were found. These are ignored, as they are noisy. Test dashboardRun cargo run --manifest-path src/ci/citool/Cargo.toml -- \
test-dashboard b96868fa2ef174b0a5aeb3bf041b3a5b517f11f8 --output-dir test-dashboard And then open Job duration changes
How to interpret the job duration changes?Job durations can vary a lot, based on the actual runner instance |
Finished benchmarking commit (b96868f): comparison URL. Overall result: ❌✅ regressions and improvements - no action needed@rustbot label: -perf-regression Instruction countOur most reliable metric. Used to determine the overall result above. However, even this metric can be noisy.
Max RSS (memory usage)This benchmark run did not return any relevant results for this metric. CyclesResults (primary -3.5%, secondary 4.6%)A less reliable metric. May be of interest, but not used to determine the overall result above.
Binary sizeResults (primary -0.4%)A less reliable metric. May be of interest, but not used to determine the overall result above.
Bootstrap: 469.299s -> 470.04s (0.16%) |
Add timeout to the disk clean space operation introduced in #145311
As reported in #145311 (comment) the wait can be stuck.