Fix sccache failure when rustc generates hundreds of thousands of warnings

Fixes https://github.com/servo/servo/issues/24714
This commit is contained in:
Simon Sapin 2019-11-12 14:13:09 +01:00
parent 944c1e9f97
commit 00151b6a6f
2 changed files with 5 additions and 3 deletions

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 = {