Auto merge of #24717 - servo:fraaaaaaaaaaaaame, r=jdm

Fix sccache failure when rustc generates thousands of warnings

Fixes https://github.com/servo/servo/issues/24714
This commit is contained in:
bors-servo 2019-11-14 07:47:12 -05:00 committed by GitHub
commit 36c2a131ac
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 3 deletions

View file

@ -2,9 +2,9 @@ env:
RUST_BACKTRACE: '1'
RUSTFLAGS: -Dwarnings
CARGO_INCREMENTAL: "0"
SCCACHE_IDLE_TIMEOUT: "1200"
GST_DEBUG: '3'
SCCACHE_IDLE_TIMEOUT: "1200"
SCCACHE_MAX_FRAME_LENGTH": "100000000" # 100 MB
linux-rel-nogate:
env:
CC: clang-4.0

View file

@ -131,9 +131,11 @@ linux_build_env = {
"SHELL": "/bin/dash", # For SpiderMonkeys build system
"CCACHE": "sccache",
"RUSTC_WRAPPER": "sccache",
"SCCACHE_IDLE_TIMEOUT": "1200",
"CC": "clang",
"CXX": "clang++",
"SCCACHE_IDLE_TIMEOUT": "1200",
# https://github.com/servo/servo/issues/24714#issuecomment-552951519
"SCCACHE_MAX_FRAME_LENGTH": str(100 * 1024 * 1024), # 100 MiB
}
macos_build_env = {}
windows_build_env = {