Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upsccache consistently errors on CI since Rust nightly-2019-11-07 #24714
Comments
|
What's the best way to tackle this? Try to reproduce this locally? |
|
I haven’t managed to reproduce when building on my machine with the same version of sccache. The output shows that this errors occurs when This happens when |
|
Is it worth seeing if there's any interesting compiler output on CI if we don't use sccache? |
|
Good idea, I’ve started https://community-tc.services.mozilla.com/tasks/Wxja6BOTQ6OYbp-79FhFtA to try that. |
|
By the way, my workflow for this kind of "try build" without a PR is:
It’s mostly out of habit, I don’t know if it’s really better or worse than using |
https://community-tc.services.mozilla.com/tasks/Wxja6BOTQ6OYbp-79FhFtA succeeded. The only thing of note is that it generated more than 300k stderr lines worth of warnings, most of them from #24684. And rust-lang/rust#65134 is in the regression range. I’ve also started https://community-tc.services.mozilla.com/tasks/BgPRR43VTKWDVM8nY6A5Ew with |
https://github.com/tokio-rs/tokio/blob/master/tokio-util/src/codec/length_delimited.rs // Default max frame length of 8MB
max_frame_len: 8 * 1_024 * 1_024,mozilla/sccache#329 / https://github.com/mozilla/sccache/blob/master/src/server.rs if let Ok(max_frame_length_str) = env::var("SCCACHE_MAX_FRAME_LENGTH") {
if let Ok(max_frame_length) = max_frame_length_str.parse::<usize>() {
builder.max_frame_length(max_frame_length); |
|
https://community-tc.services.mozilla.com/tasks/LpLx0VqfTaqiCXEmEo-Qfw is green with |
https://community-tc.services.mozilla.com/tasks/NvN6U22bQ-C626hsVGu4fA
The error message is the same as in #24510, but setting
SCCACHE_IDLE_TIMEOUTto zero does not help.Merges in the regression range of
nightly-2019-11-06tonightly-2019-11-07rust-lang/rust@1423bec...3804876: