mirror of
https://github.com/servo/servo.git
synced 2025-06-06 16:45:39 +00:00
Fix sccache failure when rustc generates hundreds of thousands of warnings
Fixes https://github.com/servo/servo/issues/24714
This commit is contained in:
parent
944c1e9f97
commit
00151b6a6f
2 changed files with 5 additions and 3 deletions
|
@ -2,9 +2,9 @@ env:
|
||||||
RUST_BACKTRACE: '1'
|
RUST_BACKTRACE: '1'
|
||||||
RUSTFLAGS: -Dwarnings
|
RUSTFLAGS: -Dwarnings
|
||||||
CARGO_INCREMENTAL: "0"
|
CARGO_INCREMENTAL: "0"
|
||||||
SCCACHE_IDLE_TIMEOUT: "1200"
|
|
||||||
GST_DEBUG: '3'
|
GST_DEBUG: '3'
|
||||||
|
SCCACHE_IDLE_TIMEOUT: "1200"
|
||||||
|
SCCACHE_MAX_FRAME_LENGTH": "100000000" # 100 MB
|
||||||
linux-rel-nogate:
|
linux-rel-nogate:
|
||||||
env:
|
env:
|
||||||
CC: clang-4.0
|
CC: clang-4.0
|
||||||
|
|
|
@ -131,9 +131,11 @@ linux_build_env = {
|
||||||
"SHELL": "/bin/dash", # For SpiderMonkey’s build system
|
"SHELL": "/bin/dash", # For SpiderMonkey’s build system
|
||||||
"CCACHE": "sccache",
|
"CCACHE": "sccache",
|
||||||
"RUSTC_WRAPPER": "sccache",
|
"RUSTC_WRAPPER": "sccache",
|
||||||
"SCCACHE_IDLE_TIMEOUT": "1200",
|
|
||||||
"CC": "clang",
|
"CC": "clang",
|
||||||
"CXX": "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 = {}
|
macos_build_env = {}
|
||||||
windows_build_env = {
|
windows_build_env = {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue