-
-
Notifications
You must be signed in to change notification settings - Fork 6.5k
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
Hyper CI build is running out of disk space #11377
Comments
These fill up the available disk space enough that the subsequent test run fails, and aren't needed after the build completes. Fixes #11377
I tried a build with code to clean up the Hyper sources and rust dependencies that it downloads before running the tests, but it didn't help with the disk space warnings. It may be that that the Hyper build has some super verbose logging enabled that rapidly fills up the disk, or it may be something completely different. |
I see an infinite loop with hyper in tests, just filling up the trace log. Investigating. See #11385 for a fix of this. I introduced a infinite loop with debug log statements in my previous hyper PR. Sorry about that. Don't know why it was not caught on the original PR. |
- refs curl#11377, where we ran out of disc space due to an infinite loop with debug logging
We ran out of disc space due to an infinite loop with debug logging Fixes curl#11377 Closes curl#11385 Reported-by: Dan Fandrich
We ran out of disc space due to an infinite loop with debug logging Fixes curl#11377 Closes curl#11385 Reported-by: Dan Fandrich
The Hyper CI build on GHA has been failing regularly lately, and the latest build provides a pretty good clue as to why:
The build fails in the
run tests
step, well after Hyper and curl have been built, so it's probably sufficient to delete the Hyper sources after it's built to recover some space.The text was updated successfully, but these errors were encountered: