-
Notifications
You must be signed in to change notification settings - Fork 13.1k
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
Spurious "no space left on device" exceptions #40359
Comments
According to https://travis-ci.org/rust-lang/rust/jobs/209124004:
And such, we're filling up. |
cc #40371 |
According to https://travis-ci.org/rust-lang/rust/jobs/209140948 we start out with 5/30GB taken up |
Word from travis is that we can't increase disk size right now. |
According to https://s3.amazonaws.com/archive.travis-ci.org/jobs/209178163/log.txt the run-pass output directory is 17GB |
"Hello world" for musl is 3.5 MB. With 2.8k tests and three separate targets being tested, that's ~30GB. That's where the space is going. |
3.1MB of that 3.5 is debuginfo |
Travis only gives us 30GB disk space and we don't currently have an option to increase that. Each musl target generates "hello world" binaries of about 3.5MB in size, and we're testing two targets in the same image. We have around 3k run-pass tests and 2 musl targets which works out to around 20GB. That's dangerously close to the limit and is causing PRs to bounce. This PR splits up the builder in two, one for x86_64 musl and the other for i686. Hopefully that'll keep us under the disk limit. Closes rust-lang#40359
travis: Split the linux-tested-targets builder Travis only gives us 30GB disk space and we don't currently have an option to increase that. Each musl target generates "hello world" binaries of about 3.5MB in size, and we're testing two targets in the same image. We have around 3k run-pass tests and 2 musl targets which works out to around 20GB. That's dangerously close to the limit and is causing PRs to bounce. This PR splits up the builder in two, one for x86_64 musl and the other for i686. Hopefully that'll keep us under the disk limit. Closes #40359
Causing our builds to fail.
I have no idea why ;_;
The text was updated successfully, but these errors were encountered: