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 upBuild failed due to SCCACHE_IDLE_TIMEOUT being too short #24510
Comments
|
It looks like we’re hitting this on CI too: https://community-tc.services.mozilla.com/tasks/HXPJxNepSsGvj0SoRU8F1g/runs/0 @jdm, @emilio, do you know why we set |
|
I vaguely recall having sccache problems with the default timeout and being told to use a non-zero timeout, but it's been a long time since that conversation. |
SimonSapin
added a commit
that referenced
this issue
Nov 12, 2019
This hopefully fixes failures like https://community-tc.services.mozilla.com/tasks/XCilk2B3RsGrgkaERGnjmA CC #24510
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Recently trying to
./mach build --release, which resulted in the following output:Google led me to #19907. Disabling the timeout fixed the issue for me:
export SCCACHE_IDLE_TIMEOUT=0;./mach build --release.@emilio pointed out that this might be worth filing an issue.