From 1b14aa25a3a4898190ef1df4f237f24cda8a40df Mon Sep 17 00:00:00 2001 From: Weston Tracey Date: Fri, 7 Feb 2020 15:27:13 -0500 Subject: [PATCH] [infra] Reland "Use ccache for linux default builds." This reverts commit 5e27550437628018e922d0ab81630ffa71bef62c. Reason for revert: Will be modified with fix. Original change's description: > Revert "Use ccache for linux default builds." > > This reverts commit 9f3eef796f631977c08fb1771f6507e0a8e55d99. > > Reason for revert: breaking https://chromium-swarm.appspot.com/tasklist?f=sk_name%3AHousekeeper-PerCommit-CheckGeneratedFiles > > Original change's description: > > Use ccache for linux default builds. > > > > Change-Id: I6bd2439c59f165d56f093185aba818d186b62761 > > Reviewed-on: https://skia-review.googlesource.com/c/skia/+/268903 > > Commit-Queue: Weston Tracey > > Reviewed-by: Ben Wagner aka dogben > > TBR=benjaminwagner@google.com,westont@google.com > > Change-Id: I3c5a8f456d03c880a24294e61ae116bd5a1e3db8 > No-Presubmit: true > No-Tree-Checks: true > No-Try: true > Reviewed-on: https://skia-review.googlesource.com/c/skia/+/269481 > Reviewed-by: Leon Scroggins > Commit-Queue: Leon Scroggins TBR=benjaminwagner@google.com,scroggo@google.com,westont@google.com Change-Id: I6937e44421d8705ca80649bc7df474944d7206bb Reviewed-on: https://skia-review.googlesource.com/c/skia/+/269483 Commit-Queue: Weston Tracey Reviewed-by: Weston Tracey Reviewed-by: Ben Wagner aka dogben --- infra/bots/gen_tasks_logic/gen_tasks_logic.go | 15 + infra/bots/recipe_modules/build/default.py | 13 + ...d-Debian9-Clang-x86_64-Debug-Coverage.json | 10 +- ...Build-Debian9-Clang-x86_64-Debug-MSAN.json | 10 +- ...ild-Debian9-Clang-x86_64-Debug-OpenCL.json | 10 +- ...Clang-x86_64-Debug-SK_CPU_LIMIT_SSE41.json | 10 +- ...-Debian9-Clang-x86_64-Debug-SafeStack.json | 10 +- ...Build-Debian9-Clang-x86_64-Debug-SkVM.json | 10 +- ...-Debian9-Clang-x86_64-Debug-SkVM_ASAN.json | 10 +- ...9-Clang-x86_64-Debug-SwiftShader_MSAN.json | 10 +- ...uild-Debian9-Clang-x86_64-Debug-Wuffs.json | 10 +- ...ld-Debian9-Clang-x86_64-Release-ANGLE.json | 10 +- ...ild-Debian9-Clang-x86_64-Release-ASAN.json | 10 +- ...ild-Debian9-Clang-x86_64-Release-Fast.json | 10 +- ...d-Debian9-Clang-x86_64-Release-NoDEPS.json | 10 +- ...d-Debian9-Clang-x86_64-Release-Static.json | 10 +- ...ian9-Clang-x86_64-Release-SwiftShader.json | 10 +- ...d-Debian9-Clang-x86_64-Release-Vulkan.json | 10 +- ...ekeeper-PerCommit-CheckGeneratedFiles.json | 10 +- ...ekeeper-PerCommit-CheckGeneratedFiles.json | 10 +- infra/bots/tasks.json | 486 ++++++++++++++++++ 21 files changed, 676 insertions(+), 18 deletions(-) diff --git a/infra/bots/gen_tasks_logic/gen_tasks_logic.go b/infra/bots/gen_tasks_logic/gen_tasks_logic.go index eb9a570faa..329ca258b3 100644 --- a/infra/bots/gen_tasks_logic/gen_tasks_logic.go +++ b/infra/bots/gen_tasks_logic/gen_tasks_logic.go @@ -92,6 +92,12 @@ var ( Path: "cache/work", }, } + CACHES_CCACHE = []*specs.Cache{ + &specs.Cache{ + Name: "ccache", + Path: "cache/ccache", + }, + } CACHES_DOCKER = []*specs.Cache{ &specs.Cache{ Name: "docker", @@ -1076,6 +1082,11 @@ func getIsolatedCIPDDeps(parts map[string]string) []string { return deps } +// usesCCache adds attributes to tasks which use ccache. +func (b *builder) usesCCache(t *specs.TaskSpec, name string) { + t.Caches = append(t.Caches, CACHES_CCACHE...) +} + // usesGit adds attributes to tasks which use git. func (b *builder) usesGit(t *specs.TaskSpec, name string) { t.Caches = append(t.Caches, CACHES_GIT...) @@ -1188,6 +1199,8 @@ func (b *builder) compile(name string, parts map[string]string) string { b.MustGetCipdPackageFromAsset("opencl_ocl_icd_linux"), ) } + task.CipdPackages = append(task.CipdPackages, b.MustGetCipdPackageFromAsset("ccache_linux")) + b.usesCCache(task, name) } else if strings.Contains(name, "Win") { task.Dependencies = append(task.Dependencies, b.isolateCIPDAsset(ISOLATE_WIN_TOOLCHAIN_NAME)) if strings.Contains(name, "Clang") { @@ -1250,6 +1263,8 @@ func (b *builder) checkGeneratedFiles(name string) string { b.usesGit(task, name) b.usesGo(task, name) task.CipdPackages = append(task.CipdPackages, b.MustGetCipdPackageFromAsset("clang_linux")) + task.CipdPackages = append(task.CipdPackages, b.MustGetCipdPackageFromAsset("ccache_linux")) + b.usesCCache(task, name) b.MustAddTask(name, task) return name } diff --git a/infra/bots/recipe_modules/build/default.py b/infra/bots/recipe_modules/build/default.py index f455583dfd..d59ebb4bf7 100644 --- a/infra/bots/recipe_modules/build/default.py +++ b/infra/bots/recipe_modules/build/default.py @@ -135,6 +135,19 @@ def compile_fn(api, checkout_root, out_dir): args['skia_compile_processors'] = 'true' args['skia_generate_workarounds'] = 'true' + # ccache + clang-tidy.sh chokes on the argument list. + if api.vars.is_linux and 'Tidy' not in extra_tokens: + args['cc_wrapper'] = '"%s"' % api.vars.slave_dir.join('ccache_linux', 'bin', 'ccache') + env['CCACHE_DIR'] = api.vars.cache_dir.join('ccache') + # Compilers are unpacked from cipd with bogus timestamps, only contribute + # compiler content to hashes. If Ninja ever uses absolute paths to changing + # directories we'll also need to set a CCACHE_BASEDIR. + env['CCACHE_COMPILERCHECK'] = 'content' + # As of 2020-02-07, the sum of each Debian9-Clang-x86 + # non-flutter/android/chromebook build takes less than 75G cache space. + env['CCACHE_MAXSIZE'] = '75G' + env['CCACHE_MAXFILES'] = '0' + if compiler == 'Clang' and api.vars.is_linux: cc = clang_linux + '/bin/clang' cxx = clang_linux + '/bin/clang++' diff --git a/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian9-Clang-x86_64-Debug-Coverage.json b/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian9-Clang-x86_64-Debug-Coverage.json index f8cc013ca3..03a4315230 100644 --- a/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian9-Clang-x86_64-Debug-Coverage.json +++ b/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian9-Clang-x86_64-Debug-Coverage.json @@ -36,10 +36,14 @@ "[START_DIR]/cache/work/skia/bin/gn", "gen", "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-x86_64-Debug-Coverage/Debug", - "--args=cc=\"[START_DIR]/clang_linux/bin/clang\" cxx=\"[START_DIR]/clang_linux/bin/clang++\" extra_cflags=[\"-B[START_DIR]/clang_linux/bin\", \"-DDUMMY_clang_linux_version=42\", \"-fprofile-instr-generate\", \"-fcoverage-mapping\", \"-O1\"] extra_ldflags=[\"-B[START_DIR]/clang_linux/bin\", \"-fuse-ld=lld\", \"-fprofile-instr-generate\", \"-fcoverage-mapping\", \"-L[START_DIR]/clang_linux/lib\"] target_cpu=\"x86_64\" werror=true" + "--args=cc=\"[START_DIR]/clang_linux/bin/clang\" cc_wrapper=\"[START_DIR]/ccache_linux/bin/ccache\" cxx=\"[START_DIR]/clang_linux/bin/clang++\" extra_cflags=[\"-B[START_DIR]/clang_linux/bin\", \"-DDUMMY_clang_linux_version=42\", \"-fprofile-instr-generate\", \"-fcoverage-mapping\", \"-O1\"] extra_ldflags=[\"-B[START_DIR]/clang_linux/bin\", \"-fuse-ld=lld\", \"-fprofile-instr-generate\", \"-fcoverage-mapping\", \"-L[START_DIR]/clang_linux/lib\"] target_cpu=\"x86_64\" werror=true" ], "cwd": "[START_DIR]/cache/work/skia", "env": { + "CCACHE_COMPILERCHECK": "content", + "CCACHE_DIR": "[START_DIR]/cache/ccache", + "CCACHE_MAXFILES": "0", + "CCACHE_MAXSIZE": "75G", "CHROME_HEADLESS": "1", "PATH": ":RECIPE_REPO[depot_tools]" }, @@ -53,6 +57,10 @@ ], "cwd": "[START_DIR]/cache/work/skia", "env": { + "CCACHE_COMPILERCHECK": "content", + "CCACHE_DIR": "[START_DIR]/cache/ccache", + "CCACHE_MAXFILES": "0", + "CCACHE_MAXSIZE": "75G", "CHROME_HEADLESS": "1", "PATH": ":RECIPE_REPO[depot_tools]" }, diff --git a/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian9-Clang-x86_64-Debug-MSAN.json b/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian9-Clang-x86_64-Debug-MSAN.json index 04564da884..e67fdbaab2 100644 --- a/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian9-Clang-x86_64-Debug-MSAN.json +++ b/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian9-Clang-x86_64-Debug-MSAN.json @@ -36,10 +36,14 @@ "[START_DIR]/cache/work/skia/bin/gn", "gen", "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-x86_64-Debug-MSAN/Debug", - "--args=cc=\"[START_DIR]/clang_linux/bin/clang\" cxx=\"[START_DIR]/clang_linux/bin/clang++\" extra_cflags=[\"-B[START_DIR]/clang_linux/bin\", \"-DDUMMY_clang_linux_version=42\", \"-O1\"] extra_ldflags=[\"-B[START_DIR]/clang_linux/bin\", \"-fuse-ld=lld\", \"-L[START_DIR]/clang_linux/msan\"] sanitize=\"MSAN\" skia_use_fontconfig=false target_cpu=\"x86_64\" werror=true" + "--args=cc=\"[START_DIR]/clang_linux/bin/clang\" cc_wrapper=\"[START_DIR]/ccache_linux/bin/ccache\" cxx=\"[START_DIR]/clang_linux/bin/clang++\" extra_cflags=[\"-B[START_DIR]/clang_linux/bin\", \"-DDUMMY_clang_linux_version=42\", \"-O1\"] extra_ldflags=[\"-B[START_DIR]/clang_linux/bin\", \"-fuse-ld=lld\", \"-L[START_DIR]/clang_linux/msan\"] sanitize=\"MSAN\" skia_use_fontconfig=false target_cpu=\"x86_64\" werror=true" ], "cwd": "[START_DIR]/cache/work/skia", "env": { + "CCACHE_COMPILERCHECK": "content", + "CCACHE_DIR": "[START_DIR]/cache/ccache", + "CCACHE_MAXFILES": "0", + "CCACHE_MAXSIZE": "75G", "CHROME_HEADLESS": "1", "PATH": ":RECIPE_REPO[depot_tools]" }, @@ -53,6 +57,10 @@ ], "cwd": "[START_DIR]/cache/work/skia", "env": { + "CCACHE_COMPILERCHECK": "content", + "CCACHE_DIR": "[START_DIR]/cache/ccache", + "CCACHE_MAXFILES": "0", + "CCACHE_MAXSIZE": "75G", "CHROME_HEADLESS": "1", "PATH": ":RECIPE_REPO[depot_tools]" }, diff --git a/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian9-Clang-x86_64-Debug-OpenCL.json b/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian9-Clang-x86_64-Debug-OpenCL.json index 316c2a0ebe..3979dd9666 100644 --- a/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian9-Clang-x86_64-Debug-OpenCL.json +++ b/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian9-Clang-x86_64-Debug-OpenCL.json @@ -36,10 +36,14 @@ "[START_DIR]/cache/work/skia/bin/gn", "gen", "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-x86_64-Debug-OpenCL/Debug", - "--args=cc=\"[START_DIR]/clang_linux/bin/clang\" cxx=\"[START_DIR]/clang_linux/bin/clang++\" extra_cflags=[\"-B[START_DIR]/clang_linux/bin\", \"-DDUMMY_clang_linux_version=42\", \"-O1\", \"-isystem[START_DIR]/opencl_headers\"] extra_ldflags=[\"-B[START_DIR]/clang_linux/bin\", \"-fuse-ld=lld\", \"-L[START_DIR]/clang_linux/lib\", \"-L[START_DIR]/opencl_ocl_icd_linux\"] skia_use_opencl=true target_cpu=\"x86_64\" werror=true" + "--args=cc=\"[START_DIR]/clang_linux/bin/clang\" cc_wrapper=\"[START_DIR]/ccache_linux/bin/ccache\" cxx=\"[START_DIR]/clang_linux/bin/clang++\" extra_cflags=[\"-B[START_DIR]/clang_linux/bin\", \"-DDUMMY_clang_linux_version=42\", \"-O1\", \"-isystem[START_DIR]/opencl_headers\"] extra_ldflags=[\"-B[START_DIR]/clang_linux/bin\", \"-fuse-ld=lld\", \"-L[START_DIR]/clang_linux/lib\", \"-L[START_DIR]/opencl_ocl_icd_linux\"] skia_use_opencl=true target_cpu=\"x86_64\" werror=true" ], "cwd": "[START_DIR]/cache/work/skia", "env": { + "CCACHE_COMPILERCHECK": "content", + "CCACHE_DIR": "[START_DIR]/cache/ccache", + "CCACHE_MAXFILES": "0", + "CCACHE_MAXSIZE": "75G", "CHROME_HEADLESS": "1", "PATH": ":RECIPE_REPO[depot_tools]" }, @@ -53,6 +57,10 @@ ], "cwd": "[START_DIR]/cache/work/skia", "env": { + "CCACHE_COMPILERCHECK": "content", + "CCACHE_DIR": "[START_DIR]/cache/ccache", + "CCACHE_MAXFILES": "0", + "CCACHE_MAXSIZE": "75G", "CHROME_HEADLESS": "1", "PATH": ":RECIPE_REPO[depot_tools]" }, diff --git a/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian9-Clang-x86_64-Debug-SK_CPU_LIMIT_SSE41.json b/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian9-Clang-x86_64-Debug-SK_CPU_LIMIT_SSE41.json index e9df3a4c58..912cdac8a4 100644 --- a/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian9-Clang-x86_64-Debug-SK_CPU_LIMIT_SSE41.json +++ b/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian9-Clang-x86_64-Debug-SK_CPU_LIMIT_SSE41.json @@ -36,10 +36,14 @@ "[START_DIR]/cache/work/skia/bin/gn", "gen", "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-x86_64-Debug-SK_CPU_LIMIT_SSE41/Debug", - "--args=cc=\"[START_DIR]/clang_linux/bin/clang\" cxx=\"[START_DIR]/clang_linux/bin/clang++\" extra_cflags=[\"-B[START_DIR]/clang_linux/bin\", \"-DDUMMY_clang_linux_version=42\", \"-O1\", \"-DSK_CPU_LIMIT_SSE41\", \"-DSKCMS_PORTABLE\"] extra_ldflags=[\"-B[START_DIR]/clang_linux/bin\", \"-fuse-ld=lld\", \"-L[START_DIR]/clang_linux/lib\"] target_cpu=\"x86_64\" werror=true" + "--args=cc=\"[START_DIR]/clang_linux/bin/clang\" cc_wrapper=\"[START_DIR]/ccache_linux/bin/ccache\" cxx=\"[START_DIR]/clang_linux/bin/clang++\" extra_cflags=[\"-B[START_DIR]/clang_linux/bin\", \"-DDUMMY_clang_linux_version=42\", \"-O1\", \"-DSK_CPU_LIMIT_SSE41\", \"-DSKCMS_PORTABLE\"] extra_ldflags=[\"-B[START_DIR]/clang_linux/bin\", \"-fuse-ld=lld\", \"-L[START_DIR]/clang_linux/lib\"] target_cpu=\"x86_64\" werror=true" ], "cwd": "[START_DIR]/cache/work/skia", "env": { + "CCACHE_COMPILERCHECK": "content", + "CCACHE_DIR": "[START_DIR]/cache/ccache", + "CCACHE_MAXFILES": "0", + "CCACHE_MAXSIZE": "75G", "CHROME_HEADLESS": "1", "PATH": ":RECIPE_REPO[depot_tools]" }, @@ -53,6 +57,10 @@ ], "cwd": "[START_DIR]/cache/work/skia", "env": { + "CCACHE_COMPILERCHECK": "content", + "CCACHE_DIR": "[START_DIR]/cache/ccache", + "CCACHE_MAXFILES": "0", + "CCACHE_MAXSIZE": "75G", "CHROME_HEADLESS": "1", "PATH": ":RECIPE_REPO[depot_tools]" }, diff --git a/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian9-Clang-x86_64-Debug-SafeStack.json b/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian9-Clang-x86_64-Debug-SafeStack.json index b6c37038f5..c164310f7e 100644 --- a/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian9-Clang-x86_64-Debug-SafeStack.json +++ b/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian9-Clang-x86_64-Debug-SafeStack.json @@ -36,10 +36,14 @@ "[START_DIR]/cache/work/skia/bin/gn", "gen", "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-x86_64-Debug-SafeStack/Debug", - "--args=cc=\"[START_DIR]/clang_linux/bin/clang\" cxx=\"[START_DIR]/clang_linux/bin/clang++\" extra_cflags=[\"-B[START_DIR]/clang_linux/bin\", \"-DDUMMY_clang_linux_version=42\", \"-O1\"] extra_ldflags=[\"-B[START_DIR]/clang_linux/bin\", \"-fuse-ld=lld\", \"-L[START_DIR]/clang_linux/lib\"] sanitize=\"safe-stack\" target_cpu=\"x86_64\" werror=true" + "--args=cc=\"[START_DIR]/clang_linux/bin/clang\" cc_wrapper=\"[START_DIR]/ccache_linux/bin/ccache\" cxx=\"[START_DIR]/clang_linux/bin/clang++\" extra_cflags=[\"-B[START_DIR]/clang_linux/bin\", \"-DDUMMY_clang_linux_version=42\", \"-O1\"] extra_ldflags=[\"-B[START_DIR]/clang_linux/bin\", \"-fuse-ld=lld\", \"-L[START_DIR]/clang_linux/lib\"] sanitize=\"safe-stack\" target_cpu=\"x86_64\" werror=true" ], "cwd": "[START_DIR]/cache/work/skia", "env": { + "CCACHE_COMPILERCHECK": "content", + "CCACHE_DIR": "[START_DIR]/cache/ccache", + "CCACHE_MAXFILES": "0", + "CCACHE_MAXSIZE": "75G", "CHROME_HEADLESS": "1", "PATH": ":RECIPE_REPO[depot_tools]" }, @@ -53,6 +57,10 @@ ], "cwd": "[START_DIR]/cache/work/skia", "env": { + "CCACHE_COMPILERCHECK": "content", + "CCACHE_DIR": "[START_DIR]/cache/ccache", + "CCACHE_MAXFILES": "0", + "CCACHE_MAXSIZE": "75G", "CHROME_HEADLESS": "1", "PATH": ":RECIPE_REPO[depot_tools]" }, diff --git a/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian9-Clang-x86_64-Debug-SkVM.json b/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian9-Clang-x86_64-Debug-SkVM.json index 10d28b0771..f35b899ece 100644 --- a/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian9-Clang-x86_64-Debug-SkVM.json +++ b/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian9-Clang-x86_64-Debug-SkVM.json @@ -36,10 +36,14 @@ "[START_DIR]/cache/work/skia/bin/gn", "gen", "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-x86_64-Debug-SkVM/Debug", - "--args=cc=\"[START_DIR]/clang_linux/bin/clang\" cxx=\"[START_DIR]/clang_linux/bin/clang++\" extra_cflags=[\"-B[START_DIR]/clang_linux/bin\", \"-DDUMMY_clang_linux_version=42\", \"-O1\", \"-DSK_USE_SKVM_BLITTER\"] extra_ldflags=[\"-B[START_DIR]/clang_linux/bin\", \"-fuse-ld=lld\", \"-L[START_DIR]/clang_linux/lib\"] target_cpu=\"x86_64\" werror=true" + "--args=cc=\"[START_DIR]/clang_linux/bin/clang\" cc_wrapper=\"[START_DIR]/ccache_linux/bin/ccache\" cxx=\"[START_DIR]/clang_linux/bin/clang++\" extra_cflags=[\"-B[START_DIR]/clang_linux/bin\", \"-DDUMMY_clang_linux_version=42\", \"-O1\", \"-DSK_USE_SKVM_BLITTER\"] extra_ldflags=[\"-B[START_DIR]/clang_linux/bin\", \"-fuse-ld=lld\", \"-L[START_DIR]/clang_linux/lib\"] target_cpu=\"x86_64\" werror=true" ], "cwd": "[START_DIR]/cache/work/skia", "env": { + "CCACHE_COMPILERCHECK": "content", + "CCACHE_DIR": "[START_DIR]/cache/ccache", + "CCACHE_MAXFILES": "0", + "CCACHE_MAXSIZE": "75G", "CHROME_HEADLESS": "1", "PATH": ":RECIPE_REPO[depot_tools]" }, @@ -53,6 +57,10 @@ ], "cwd": "[START_DIR]/cache/work/skia", "env": { + "CCACHE_COMPILERCHECK": "content", + "CCACHE_DIR": "[START_DIR]/cache/ccache", + "CCACHE_MAXFILES": "0", + "CCACHE_MAXSIZE": "75G", "CHROME_HEADLESS": "1", "PATH": ":RECIPE_REPO[depot_tools]" }, diff --git a/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian9-Clang-x86_64-Debug-SkVM_ASAN.json b/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian9-Clang-x86_64-Debug-SkVM_ASAN.json index 3e3eb4596d..77e6446926 100644 --- a/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian9-Clang-x86_64-Debug-SkVM_ASAN.json +++ b/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian9-Clang-x86_64-Debug-SkVM_ASAN.json @@ -36,10 +36,14 @@ "[START_DIR]/cache/work/skia/bin/gn", "gen", "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-x86_64-Debug-SkVM_ASAN/Debug", - "--args=cc=\"[START_DIR]/clang_linux/bin/clang\" cxx=\"[START_DIR]/clang_linux/bin/clang++\" extra_cflags=[\"-B[START_DIR]/clang_linux/bin\", \"-DDUMMY_clang_linux_version=42\", \"-O1\", \"-DSK_USE_SKVM_BLITTER\", \"-DSK_ENABLE_SCOPED_LSAN_SUPPRESSIONS\"] extra_ldflags=[\"-B[START_DIR]/clang_linux/bin\", \"-fuse-ld=lld\", \"-L[START_DIR]/clang_linux/lib\"] sanitize=\"ASAN\" skia_enable_spirv_validation=false target_cpu=\"x86_64\" werror=true" + "--args=cc=\"[START_DIR]/clang_linux/bin/clang\" cc_wrapper=\"[START_DIR]/ccache_linux/bin/ccache\" cxx=\"[START_DIR]/clang_linux/bin/clang++\" extra_cflags=[\"-B[START_DIR]/clang_linux/bin\", \"-DDUMMY_clang_linux_version=42\", \"-O1\", \"-DSK_USE_SKVM_BLITTER\", \"-DSK_ENABLE_SCOPED_LSAN_SUPPRESSIONS\"] extra_ldflags=[\"-B[START_DIR]/clang_linux/bin\", \"-fuse-ld=lld\", \"-L[START_DIR]/clang_linux/lib\"] sanitize=\"ASAN\" skia_enable_spirv_validation=false target_cpu=\"x86_64\" werror=true" ], "cwd": "[START_DIR]/cache/work/skia", "env": { + "CCACHE_COMPILERCHECK": "content", + "CCACHE_DIR": "[START_DIR]/cache/ccache", + "CCACHE_MAXFILES": "0", + "CCACHE_MAXSIZE": "75G", "CHROME_HEADLESS": "1", "PATH": ":RECIPE_REPO[depot_tools]" }, @@ -53,6 +57,10 @@ ], "cwd": "[START_DIR]/cache/work/skia", "env": { + "CCACHE_COMPILERCHECK": "content", + "CCACHE_DIR": "[START_DIR]/cache/ccache", + "CCACHE_MAXFILES": "0", + "CCACHE_MAXSIZE": "75G", "CHROME_HEADLESS": "1", "PATH": ":RECIPE_REPO[depot_tools]" }, diff --git a/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian9-Clang-x86_64-Debug-SwiftShader_MSAN.json b/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian9-Clang-x86_64-Debug-SwiftShader_MSAN.json index 67a5bfecb8..fbb77c4d36 100644 --- a/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian9-Clang-x86_64-Debug-SwiftShader_MSAN.json +++ b/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian9-Clang-x86_64-Debug-SwiftShader_MSAN.json @@ -88,10 +88,14 @@ "[START_DIR]/cache/work/skia/bin/gn", "gen", "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-x86_64-Debug-SwiftShader_MSAN/Debug", - "--args=cc=\"[START_DIR]/clang_linux/bin/clang\" cxx=\"[START_DIR]/clang_linux/bin/clang++\" extra_cflags=[\"-B[START_DIR]/clang_linux/bin\", \"-DDUMMY_clang_linux_version=42\", \"-O1\", \"-DGR_EGL_TRY_GLES3_THEN_GLES2\", \"-I[START_DIR]/cache/work/skia/third_party/externals/egl-registry/api\", \"-I[START_DIR]/cache/work/skia/third_party/externals/opengl-registry/api\"] extra_ldflags=[\"-B[START_DIR]/clang_linux/bin\", \"-fuse-ld=lld\", \"-L[START_DIR]/clang_linux/msan\", \"-L[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-x86_64-Debug-SwiftShader_MSAN/Debug/swiftshader_out\"] sanitize=\"MSAN\" skia_use_egl=true skia_use_fontconfig=false target_cpu=\"x86_64\" werror=true" + "--args=cc=\"[START_DIR]/clang_linux/bin/clang\" cc_wrapper=\"[START_DIR]/ccache_linux/bin/ccache\" cxx=\"[START_DIR]/clang_linux/bin/clang++\" extra_cflags=[\"-B[START_DIR]/clang_linux/bin\", \"-DDUMMY_clang_linux_version=42\", \"-O1\", \"-DGR_EGL_TRY_GLES3_THEN_GLES2\", \"-I[START_DIR]/cache/work/skia/third_party/externals/egl-registry/api\", \"-I[START_DIR]/cache/work/skia/third_party/externals/opengl-registry/api\"] extra_ldflags=[\"-B[START_DIR]/clang_linux/bin\", \"-fuse-ld=lld\", \"-L[START_DIR]/clang_linux/msan\", \"-L[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-x86_64-Debug-SwiftShader_MSAN/Debug/swiftshader_out\"] sanitize=\"MSAN\" skia_use_egl=true skia_use_fontconfig=false target_cpu=\"x86_64\" werror=true" ], "cwd": "[START_DIR]/cache/work/skia", "env": { + "CCACHE_COMPILERCHECK": "content", + "CCACHE_DIR": "[START_DIR]/cache/ccache", + "CCACHE_MAXFILES": "0", + "CCACHE_MAXSIZE": "75G", "CHROME_HEADLESS": "1", "PATH": ":RECIPE_REPO[depot_tools]" }, @@ -105,6 +109,10 @@ ], "cwd": "[START_DIR]/cache/work/skia", "env": { + "CCACHE_COMPILERCHECK": "content", + "CCACHE_DIR": "[START_DIR]/cache/ccache", + "CCACHE_MAXFILES": "0", + "CCACHE_MAXSIZE": "75G", "CHROME_HEADLESS": "1", "PATH": ":RECIPE_REPO[depot_tools]" }, diff --git a/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian9-Clang-x86_64-Debug-Wuffs.json b/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian9-Clang-x86_64-Debug-Wuffs.json index b5a3b806d7..157b901f73 100644 --- a/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian9-Clang-x86_64-Debug-Wuffs.json +++ b/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian9-Clang-x86_64-Debug-Wuffs.json @@ -36,10 +36,14 @@ "[START_DIR]/cache/work/skia/bin/gn", "gen", "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-x86_64-Debug-Wuffs/Debug", - "--args=cc=\"[START_DIR]/clang_linux/bin/clang\" cxx=\"[START_DIR]/clang_linux/bin/clang++\" extra_cflags=[\"-B[START_DIR]/clang_linux/bin\", \"-DDUMMY_clang_linux_version=42\", \"-O1\"] extra_ldflags=[\"-B[START_DIR]/clang_linux/bin\", \"-fuse-ld=lld\", \"-L[START_DIR]/clang_linux/lib\"] skia_use_wuffs=true target_cpu=\"x86_64\" werror=true" + "--args=cc=\"[START_DIR]/clang_linux/bin/clang\" cc_wrapper=\"[START_DIR]/ccache_linux/bin/ccache\" cxx=\"[START_DIR]/clang_linux/bin/clang++\" extra_cflags=[\"-B[START_DIR]/clang_linux/bin\", \"-DDUMMY_clang_linux_version=42\", \"-O1\"] extra_ldflags=[\"-B[START_DIR]/clang_linux/bin\", \"-fuse-ld=lld\", \"-L[START_DIR]/clang_linux/lib\"] skia_use_wuffs=true target_cpu=\"x86_64\" werror=true" ], "cwd": "[START_DIR]/cache/work/skia", "env": { + "CCACHE_COMPILERCHECK": "content", + "CCACHE_DIR": "[START_DIR]/cache/ccache", + "CCACHE_MAXFILES": "0", + "CCACHE_MAXSIZE": "75G", "CHROME_HEADLESS": "1", "PATH": ":RECIPE_REPO[depot_tools]" }, @@ -53,6 +57,10 @@ ], "cwd": "[START_DIR]/cache/work/skia", "env": { + "CCACHE_COMPILERCHECK": "content", + "CCACHE_DIR": "[START_DIR]/cache/ccache", + "CCACHE_MAXFILES": "0", + "CCACHE_MAXSIZE": "75G", "CHROME_HEADLESS": "1", "PATH": ":RECIPE_REPO[depot_tools]" }, diff --git a/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian9-Clang-x86_64-Release-ANGLE.json b/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian9-Clang-x86_64-Release-ANGLE.json index 0a37cde3c4..b5bb8eec48 100644 --- a/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian9-Clang-x86_64-Release-ANGLE.json +++ b/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian9-Clang-x86_64-Release-ANGLE.json @@ -36,10 +36,14 @@ "[START_DIR]/cache/work/skia/bin/gn", "gen", "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-x86_64-Release-ANGLE/Release", - "--args=cc=\"[START_DIR]/clang_linux/bin/clang\" cxx=\"[START_DIR]/clang_linux/bin/clang++\" extra_cflags=[\"-B[START_DIR]/clang_linux/bin\", \"-DDUMMY_clang_linux_version=42\"] extra_ldflags=[\"-B[START_DIR]/clang_linux/bin\", \"-fuse-ld=lld\", \"-L[START_DIR]/clang_linux/lib\"] is_debug=false skia_use_angle=true target_cpu=\"x86_64\" werror=true" + "--args=cc=\"[START_DIR]/clang_linux/bin/clang\" cc_wrapper=\"[START_DIR]/ccache_linux/bin/ccache\" cxx=\"[START_DIR]/clang_linux/bin/clang++\" extra_cflags=[\"-B[START_DIR]/clang_linux/bin\", \"-DDUMMY_clang_linux_version=42\"] extra_ldflags=[\"-B[START_DIR]/clang_linux/bin\", \"-fuse-ld=lld\", \"-L[START_DIR]/clang_linux/lib\"] is_debug=false skia_use_angle=true target_cpu=\"x86_64\" werror=true" ], "cwd": "[START_DIR]/cache/work/skia", "env": { + "CCACHE_COMPILERCHECK": "content", + "CCACHE_DIR": "[START_DIR]/cache/ccache", + "CCACHE_MAXFILES": "0", + "CCACHE_MAXSIZE": "75G", "CHROME_HEADLESS": "1", "PATH": ":RECIPE_REPO[depot_tools]" }, @@ -53,6 +57,10 @@ ], "cwd": "[START_DIR]/cache/work/skia", "env": { + "CCACHE_COMPILERCHECK": "content", + "CCACHE_DIR": "[START_DIR]/cache/ccache", + "CCACHE_MAXFILES": "0", + "CCACHE_MAXSIZE": "75G", "CHROME_HEADLESS": "1", "PATH": ":RECIPE_REPO[depot_tools]" }, diff --git a/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian9-Clang-x86_64-Release-ASAN.json b/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian9-Clang-x86_64-Release-ASAN.json index 410b2e67b8..992d86944e 100644 --- a/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian9-Clang-x86_64-Release-ASAN.json +++ b/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian9-Clang-x86_64-Release-ASAN.json @@ -36,10 +36,14 @@ "[START_DIR]/cache/work/skia/bin/gn", "gen", "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-x86_64-Release-ASAN/Release", - "--args=cc=\"[START_DIR]/clang_linux/bin/clang\" cxx=\"[START_DIR]/clang_linux/bin/clang++\" extra_cflags=[\"-B[START_DIR]/clang_linux/bin\", \"-DDUMMY_clang_linux_version=42\", \"-DSK_ENABLE_SCOPED_LSAN_SUPPRESSIONS\"] extra_ldflags=[\"-B[START_DIR]/clang_linux/bin\", \"-fuse-ld=lld\", \"-L[START_DIR]/clang_linux/lib\"] is_debug=false sanitize=\"ASAN\" skia_enable_spirv_validation=false target_cpu=\"x86_64\" werror=true" + "--args=cc=\"[START_DIR]/clang_linux/bin/clang\" cc_wrapper=\"[START_DIR]/ccache_linux/bin/ccache\" cxx=\"[START_DIR]/clang_linux/bin/clang++\" extra_cflags=[\"-B[START_DIR]/clang_linux/bin\", \"-DDUMMY_clang_linux_version=42\", \"-DSK_ENABLE_SCOPED_LSAN_SUPPRESSIONS\"] extra_ldflags=[\"-B[START_DIR]/clang_linux/bin\", \"-fuse-ld=lld\", \"-L[START_DIR]/clang_linux/lib\"] is_debug=false sanitize=\"ASAN\" skia_enable_spirv_validation=false target_cpu=\"x86_64\" werror=true" ], "cwd": "[START_DIR]/cache/work/skia", "env": { + "CCACHE_COMPILERCHECK": "content", + "CCACHE_DIR": "[START_DIR]/cache/ccache", + "CCACHE_MAXFILES": "0", + "CCACHE_MAXSIZE": "75G", "CHROME_HEADLESS": "1", "PATH": ":RECIPE_REPO[depot_tools]" }, @@ -53,6 +57,10 @@ ], "cwd": "[START_DIR]/cache/work/skia", "env": { + "CCACHE_COMPILERCHECK": "content", + "CCACHE_DIR": "[START_DIR]/cache/ccache", + "CCACHE_MAXFILES": "0", + "CCACHE_MAXSIZE": "75G", "CHROME_HEADLESS": "1", "PATH": ":RECIPE_REPO[depot_tools]" }, diff --git a/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian9-Clang-x86_64-Release-Fast.json b/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian9-Clang-x86_64-Release-Fast.json index 2d1e5f7ff4..fcd0fb81b1 100644 --- a/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian9-Clang-x86_64-Release-Fast.json +++ b/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian9-Clang-x86_64-Release-Fast.json @@ -36,10 +36,14 @@ "[START_DIR]/cache/work/skia/bin/gn", "gen", "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-x86_64-Release-Fast/Release", - "--args=cc=\"[START_DIR]/clang_linux/bin/clang\" cxx=\"[START_DIR]/clang_linux/bin/clang++\" extra_cflags=[\"-B[START_DIR]/clang_linux/bin\", \"-DDUMMY_clang_linux_version=42\", \"-march=native\", \"-fomit-frame-pointer\", \"-O3\", \"-ffp-contract=off\"] extra_ldflags=[\"-B[START_DIR]/clang_linux/bin\", \"-fuse-ld=lld\", \"-L[START_DIR]/clang_linux/lib\"] is_debug=false target_cpu=\"x86_64\" werror=true" + "--args=cc=\"[START_DIR]/clang_linux/bin/clang\" cc_wrapper=\"[START_DIR]/ccache_linux/bin/ccache\" cxx=\"[START_DIR]/clang_linux/bin/clang++\" extra_cflags=[\"-B[START_DIR]/clang_linux/bin\", \"-DDUMMY_clang_linux_version=42\", \"-march=native\", \"-fomit-frame-pointer\", \"-O3\", \"-ffp-contract=off\"] extra_ldflags=[\"-B[START_DIR]/clang_linux/bin\", \"-fuse-ld=lld\", \"-L[START_DIR]/clang_linux/lib\"] is_debug=false target_cpu=\"x86_64\" werror=true" ], "cwd": "[START_DIR]/cache/work/skia", "env": { + "CCACHE_COMPILERCHECK": "content", + "CCACHE_DIR": "[START_DIR]/cache/ccache", + "CCACHE_MAXFILES": "0", + "CCACHE_MAXSIZE": "75G", "CHROME_HEADLESS": "1", "PATH": ":RECIPE_REPO[depot_tools]" }, @@ -53,6 +57,10 @@ ], "cwd": "[START_DIR]/cache/work/skia", "env": { + "CCACHE_COMPILERCHECK": "content", + "CCACHE_DIR": "[START_DIR]/cache/ccache", + "CCACHE_MAXFILES": "0", + "CCACHE_MAXSIZE": "75G", "CHROME_HEADLESS": "1", "PATH": ":RECIPE_REPO[depot_tools]" }, diff --git a/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian9-Clang-x86_64-Release-NoDEPS.json b/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian9-Clang-x86_64-Release-NoDEPS.json index 9d8e045c13..31be48f76e 100644 --- a/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian9-Clang-x86_64-Release-NoDEPS.json +++ b/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian9-Clang-x86_64-Release-NoDEPS.json @@ -36,10 +36,14 @@ "[START_DIR]/cache/work/skia/bin/gn", "gen", "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-x86_64-Release-NoDEPS/Release", - "--args=cc=\"[START_DIR]/clang_linux/bin/clang\" cxx=\"[START_DIR]/clang_linux/bin/clang++\" extra_cflags=[\"-B[START_DIR]/clang_linux/bin\", \"-DDUMMY_clang_linux_version=42\"] extra_ldflags=[\"-B[START_DIR]/clang_linux/bin\", \"-fuse-ld=lld\", \"-L[START_DIR]/clang_linux/lib\"] is_debug=false is_official_build=true skia_enable_fontmgr_empty=true skia_enable_gpu=true skia_enable_pdf=false skia_use_expat=false skia_use_freetype=false skia_use_harfbuzz=false skia_use_libjpeg_turbo=false skia_use_libpng=false skia_use_libwebp=false skia_use_vulkan=false skia_use_zlib=false target_cpu=\"x86_64\" werror=true" + "--args=cc=\"[START_DIR]/clang_linux/bin/clang\" cc_wrapper=\"[START_DIR]/ccache_linux/bin/ccache\" cxx=\"[START_DIR]/clang_linux/bin/clang++\" extra_cflags=[\"-B[START_DIR]/clang_linux/bin\", \"-DDUMMY_clang_linux_version=42\"] extra_ldflags=[\"-B[START_DIR]/clang_linux/bin\", \"-fuse-ld=lld\", \"-L[START_DIR]/clang_linux/lib\"] is_debug=false is_official_build=true skia_enable_fontmgr_empty=true skia_enable_gpu=true skia_enable_pdf=false skia_use_expat=false skia_use_freetype=false skia_use_harfbuzz=false skia_use_libjpeg_turbo=false skia_use_libpng=false skia_use_libwebp=false skia_use_vulkan=false skia_use_zlib=false target_cpu=\"x86_64\" werror=true" ], "cwd": "[START_DIR]/cache/work/skia", "env": { + "CCACHE_COMPILERCHECK": "content", + "CCACHE_DIR": "[START_DIR]/cache/ccache", + "CCACHE_MAXFILES": "0", + "CCACHE_MAXSIZE": "75G", "CHROME_HEADLESS": "1", "PATH": ":RECIPE_REPO[depot_tools]" }, @@ -53,6 +57,10 @@ ], "cwd": "[START_DIR]/cache/work/skia", "env": { + "CCACHE_COMPILERCHECK": "content", + "CCACHE_DIR": "[START_DIR]/cache/ccache", + "CCACHE_MAXFILES": "0", + "CCACHE_MAXSIZE": "75G", "CHROME_HEADLESS": "1", "PATH": ":RECIPE_REPO[depot_tools]" }, diff --git a/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian9-Clang-x86_64-Release-Static.json b/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian9-Clang-x86_64-Release-Static.json index 35e81ccff1..40a8e22c1a 100644 --- a/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian9-Clang-x86_64-Release-Static.json +++ b/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian9-Clang-x86_64-Release-Static.json @@ -36,10 +36,14 @@ "[START_DIR]/cache/work/skia/bin/gn", "gen", "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-x86_64-Release-Static/Release", - "--args=cc=\"[START_DIR]/clang_linux/bin/clang\" cxx=\"[START_DIR]/clang_linux/bin/clang++\" extra_cflags=[\"-B[START_DIR]/clang_linux/bin\", \"-DDUMMY_clang_linux_version=42\"] extra_ldflags=[\"-B[START_DIR]/clang_linux/bin\", \"-fuse-ld=lld\", \"-static-libstdc++\", \"-static-libgcc\", \"-L[START_DIR]/clang_linux/lib\"] is_debug=false target_cpu=\"x86_64\" werror=true" + "--args=cc=\"[START_DIR]/clang_linux/bin/clang\" cc_wrapper=\"[START_DIR]/ccache_linux/bin/ccache\" cxx=\"[START_DIR]/clang_linux/bin/clang++\" extra_cflags=[\"-B[START_DIR]/clang_linux/bin\", \"-DDUMMY_clang_linux_version=42\"] extra_ldflags=[\"-B[START_DIR]/clang_linux/bin\", \"-fuse-ld=lld\", \"-static-libstdc++\", \"-static-libgcc\", \"-L[START_DIR]/clang_linux/lib\"] is_debug=false target_cpu=\"x86_64\" werror=true" ], "cwd": "[START_DIR]/cache/work/skia", "env": { + "CCACHE_COMPILERCHECK": "content", + "CCACHE_DIR": "[START_DIR]/cache/ccache", + "CCACHE_MAXFILES": "0", + "CCACHE_MAXSIZE": "75G", "CHROME_HEADLESS": "1", "PATH": ":RECIPE_REPO[depot_tools]" }, @@ -53,6 +57,10 @@ ], "cwd": "[START_DIR]/cache/work/skia", "env": { + "CCACHE_COMPILERCHECK": "content", + "CCACHE_DIR": "[START_DIR]/cache/ccache", + "CCACHE_MAXFILES": "0", + "CCACHE_MAXSIZE": "75G", "CHROME_HEADLESS": "1", "PATH": ":RECIPE_REPO[depot_tools]" }, diff --git a/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian9-Clang-x86_64-Release-SwiftShader.json b/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian9-Clang-x86_64-Release-SwiftShader.json index 3a00732cb2..c33dab9393 100644 --- a/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian9-Clang-x86_64-Release-SwiftShader.json +++ b/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian9-Clang-x86_64-Release-SwiftShader.json @@ -85,10 +85,14 @@ "[START_DIR]/cache/work/skia/bin/gn", "gen", "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-x86_64-Release-SwiftShader/Release", - "--args=cc=\"[START_DIR]/clang_linux/bin/clang\" cxx=\"[START_DIR]/clang_linux/bin/clang++\" extra_cflags=[\"-B[START_DIR]/clang_linux/bin\", \"-DDUMMY_clang_linux_version=42\", \"-DGR_EGL_TRY_GLES3_THEN_GLES2\", \"-I[START_DIR]/cache/work/skia/third_party/externals/egl-registry/api\", \"-I[START_DIR]/cache/work/skia/third_party/externals/opengl-registry/api\"] extra_ldflags=[\"-B[START_DIR]/clang_linux/bin\", \"-fuse-ld=lld\", \"-L[START_DIR]/clang_linux/lib\", \"-L[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-x86_64-Release-SwiftShader/Release/swiftshader_out\"] is_debug=false skia_use_egl=true target_cpu=\"x86_64\" werror=true" + "--args=cc=\"[START_DIR]/clang_linux/bin/clang\" cc_wrapper=\"[START_DIR]/ccache_linux/bin/ccache\" cxx=\"[START_DIR]/clang_linux/bin/clang++\" extra_cflags=[\"-B[START_DIR]/clang_linux/bin\", \"-DDUMMY_clang_linux_version=42\", \"-DGR_EGL_TRY_GLES3_THEN_GLES2\", \"-I[START_DIR]/cache/work/skia/third_party/externals/egl-registry/api\", \"-I[START_DIR]/cache/work/skia/third_party/externals/opengl-registry/api\"] extra_ldflags=[\"-B[START_DIR]/clang_linux/bin\", \"-fuse-ld=lld\", \"-L[START_DIR]/clang_linux/lib\", \"-L[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-x86_64-Release-SwiftShader/Release/swiftshader_out\"] is_debug=false skia_use_egl=true target_cpu=\"x86_64\" werror=true" ], "cwd": "[START_DIR]/cache/work/skia", "env": { + "CCACHE_COMPILERCHECK": "content", + "CCACHE_DIR": "[START_DIR]/cache/ccache", + "CCACHE_MAXFILES": "0", + "CCACHE_MAXSIZE": "75G", "CHROME_HEADLESS": "1", "PATH": ":RECIPE_REPO[depot_tools]" }, @@ -102,6 +106,10 @@ ], "cwd": "[START_DIR]/cache/work/skia", "env": { + "CCACHE_COMPILERCHECK": "content", + "CCACHE_DIR": "[START_DIR]/cache/ccache", + "CCACHE_MAXFILES": "0", + "CCACHE_MAXSIZE": "75G", "CHROME_HEADLESS": "1", "PATH": ":RECIPE_REPO[depot_tools]" }, diff --git a/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian9-Clang-x86_64-Release-Vulkan.json b/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian9-Clang-x86_64-Release-Vulkan.json index f3712dae0c..23dac9ed2c 100644 --- a/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian9-Clang-x86_64-Release-Vulkan.json +++ b/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian9-Clang-x86_64-Release-Vulkan.json @@ -36,10 +36,14 @@ "[START_DIR]/cache/work/skia/bin/gn", "gen", "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-x86_64-Release-Vulkan/Release", - "--args=cc=\"[START_DIR]/clang_linux/bin/clang\" cxx=\"[START_DIR]/clang_linux/bin/clang++\" extra_cflags=[\"-B[START_DIR]/clang_linux/bin\", \"-DDUMMY_clang_linux_version=42\"] extra_ldflags=[\"-B[START_DIR]/clang_linux/bin\", \"-fuse-ld=lld\", \"-L[START_DIR]/clang_linux/lib\"] is_debug=false skia_enable_vulkan_debug_layers=true skia_use_vulkan=true target_cpu=\"x86_64\" werror=true" + "--args=cc=\"[START_DIR]/clang_linux/bin/clang\" cc_wrapper=\"[START_DIR]/ccache_linux/bin/ccache\" cxx=\"[START_DIR]/clang_linux/bin/clang++\" extra_cflags=[\"-B[START_DIR]/clang_linux/bin\", \"-DDUMMY_clang_linux_version=42\"] extra_ldflags=[\"-B[START_DIR]/clang_linux/bin\", \"-fuse-ld=lld\", \"-L[START_DIR]/clang_linux/lib\"] is_debug=false skia_enable_vulkan_debug_layers=true skia_use_vulkan=true target_cpu=\"x86_64\" werror=true" ], "cwd": "[START_DIR]/cache/work/skia", "env": { + "CCACHE_COMPILERCHECK": "content", + "CCACHE_DIR": "[START_DIR]/cache/ccache", + "CCACHE_MAXFILES": "0", + "CCACHE_MAXSIZE": "75G", "CHROME_HEADLESS": "1", "PATH": ":RECIPE_REPO[depot_tools]" }, @@ -53,6 +57,10 @@ ], "cwd": "[START_DIR]/cache/work/skia", "env": { + "CCACHE_COMPILERCHECK": "content", + "CCACHE_DIR": "[START_DIR]/cache/ccache", + "CCACHE_MAXFILES": "0", + "CCACHE_MAXSIZE": "75G", "CHROME_HEADLESS": "1", "PATH": ":RECIPE_REPO[depot_tools]" }, diff --git a/infra/bots/recipe_modules/build/examples/full.expected/Housekeeper-PerCommit-CheckGeneratedFiles.json b/infra/bots/recipe_modules/build/examples/full.expected/Housekeeper-PerCommit-CheckGeneratedFiles.json index eba848a2ec..127184face 100644 --- a/infra/bots/recipe_modules/build/examples/full.expected/Housekeeper-PerCommit-CheckGeneratedFiles.json +++ b/infra/bots/recipe_modules/build/examples/full.expected/Housekeeper-PerCommit-CheckGeneratedFiles.json @@ -50,10 +50,14 @@ "[START_DIR]/cache/work/skia/bin/gn", "gen", "[START_DIR]/cache/work/skia/out/Housekeeper-PerCommit-CheckGeneratedFiles/Release", - "--args=cc=\"[START_DIR]/clang_linux/bin/clang\" cxx=\"[START_DIR]/clang_linux/bin/clang++\" extra_cflags=[\"-B[START_DIR]/clang_linux/bin\", \"-DDUMMY_clang_linux_version=42\"] extra_ldflags=[\"-B[START_DIR]/clang_linux/bin\", \"-fuse-ld=lld\", \"-L[START_DIR]/clang_linux/lib\"] is_debug=false skia_compile_processors=true skia_generate_workarounds=true werror=true" + "--args=cc=\"[START_DIR]/clang_linux/bin/clang\" cc_wrapper=\"[START_DIR]/ccache_linux/bin/ccache\" cxx=\"[START_DIR]/clang_linux/bin/clang++\" extra_cflags=[\"-B[START_DIR]/clang_linux/bin\", \"-DDUMMY_clang_linux_version=42\"] extra_ldflags=[\"-B[START_DIR]/clang_linux/bin\", \"-fuse-ld=lld\", \"-L[START_DIR]/clang_linux/lib\"] is_debug=false skia_compile_processors=true skia_generate_workarounds=true werror=true" ], "cwd": "[START_DIR]/cache/work/skia", "env": { + "CCACHE_COMPILERCHECK": "content", + "CCACHE_DIR": "[START_DIR]/cache/ccache", + "CCACHE_MAXFILES": "0", + "CCACHE_MAXSIZE": "75G", "CHROME_HEADLESS": "1", "PATH": "[START_DIR]/cache/work/skia/bin::RECIPE_REPO[depot_tools]" }, @@ -67,6 +71,10 @@ ], "cwd": "[START_DIR]/cache/work/skia", "env": { + "CCACHE_COMPILERCHECK": "content", + "CCACHE_DIR": "[START_DIR]/cache/ccache", + "CCACHE_MAXFILES": "0", + "CCACHE_MAXSIZE": "75G", "CHROME_HEADLESS": "1", "PATH": "[START_DIR]/cache/work/skia/bin::RECIPE_REPO[depot_tools]" }, diff --git a/infra/bots/recipes/check_generated_files.expected/Housekeeper-PerCommit-CheckGeneratedFiles.json b/infra/bots/recipes/check_generated_files.expected/Housekeeper-PerCommit-CheckGeneratedFiles.json index 31b062efd5..28c188623e 100644 --- a/infra/bots/recipes/check_generated_files.expected/Housekeeper-PerCommit-CheckGeneratedFiles.json +++ b/infra/bots/recipes/check_generated_files.expected/Housekeeper-PerCommit-CheckGeneratedFiles.json @@ -306,10 +306,14 @@ "[START_DIR]/cache/work/skia/bin/gn", "gen", "[START_DIR]/build/out/Release", - "--args=cc=\"[START_DIR]/clang_linux/bin/clang\" cxx=\"[START_DIR]/clang_linux/bin/clang++\" extra_cflags=[\"-B[START_DIR]/clang_linux/bin\", \"-DDUMMY_clang_linux_version=42\"] extra_ldflags=[\"-B[START_DIR]/clang_linux/bin\", \"-fuse-ld=lld\", \"-L[START_DIR]/clang_linux/lib\"] is_debug=false skia_compile_processors=true skia_generate_workarounds=true werror=true" + "--args=cc=\"[START_DIR]/clang_linux/bin/clang\" cc_wrapper=\"[START_DIR]/ccache_linux/bin/ccache\" cxx=\"[START_DIR]/clang_linux/bin/clang++\" extra_cflags=[\"-B[START_DIR]/clang_linux/bin\", \"-DDUMMY_clang_linux_version=42\"] extra_ldflags=[\"-B[START_DIR]/clang_linux/bin\", \"-fuse-ld=lld\", \"-L[START_DIR]/clang_linux/lib\"] is_debug=false skia_compile_processors=true skia_generate_workarounds=true werror=true" ], "cwd": "[START_DIR]/cache/work/skia", "env": { + "CCACHE_COMPILERCHECK": "content", + "CCACHE_DIR": "[START_DIR]/cache/ccache", + "CCACHE_MAXFILES": "0", + "CCACHE_MAXSIZE": "75G", "CHROME_HEADLESS": "1", "PATH": "[START_DIR]/cache/work/skia/bin::RECIPE_REPO[depot_tools]" }, @@ -323,6 +327,10 @@ ], "cwd": "[START_DIR]/cache/work/skia", "env": { + "CCACHE_COMPILERCHECK": "content", + "CCACHE_DIR": "[START_DIR]/cache/ccache", + "CCACHE_MAXFILES": "0", + "CCACHE_MAXSIZE": "75G", "CHROME_HEADLESS": "1", "PATH": "[START_DIR]/cache/work/skia/bin::RECIPE_REPO[depot_tools]" }, diff --git a/infra/bots/tasks.json b/infra/bots/tasks.json index 5c4291035d..ddaef859fb 100755 --- a/infra/bots/tasks.json +++ b/infra/bots/tasks.json @@ -3055,6 +3055,10 @@ { "name": "docker", "path": "cache/docker" + }, + { + "name": "ccache", + "path": "cache/ccache" } ], "cipd_packages": [ @@ -3072,6 +3076,11 @@ "name": "infra/tools/luci/vpython/${platform}", "path": "cipd_bin_packages", "version": "git_revision:18e4e91040bcaae33d51a0179a9ada9319cde14d" + }, + { + "name": "skia/bots/ccache_linux", + "path": "ccache_linux", + "version": "version:1" } ], "command": [ @@ -3125,6 +3134,10 @@ { "name": "docker", "path": "cache/docker" + }, + { + "name": "ccache", + "path": "cache/ccache" } ], "cipd_packages": [ @@ -3142,6 +3155,11 @@ "name": "infra/tools/luci/vpython/${platform}", "path": "cipd_bin_packages", "version": "git_revision:18e4e91040bcaae33d51a0179a9ada9319cde14d" + }, + { + "name": "skia/bots/ccache_linux", + "path": "ccache_linux", + "version": "version:1" } ], "command": [ @@ -3195,6 +3213,10 @@ { "name": "docker", "path": "cache/docker" + }, + { + "name": "ccache", + "path": "cache/ccache" } ], "cipd_packages": [ @@ -3212,6 +3234,11 @@ "name": "infra/tools/luci/vpython/${platform}", "path": "cipd_bin_packages", "version": "git_revision:18e4e91040bcaae33d51a0179a9ada9319cde14d" + }, + { + "name": "skia/bots/ccache_linux", + "path": "ccache_linux", + "version": "version:1" } ], "command": [ @@ -3265,6 +3292,10 @@ { "name": "docker", "path": "cache/docker" + }, + { + "name": "ccache", + "path": "cache/ccache" } ], "cipd_packages": [ @@ -3282,6 +3313,11 @@ "name": "infra/tools/luci/vpython/${platform}", "path": "cipd_bin_packages", "version": "git_revision:18e4e91040bcaae33d51a0179a9ada9319cde14d" + }, + { + "name": "skia/bots/ccache_linux", + "path": "ccache_linux", + "version": "version:1" } ], "command": [ @@ -3335,6 +3371,10 @@ { "name": "docker", "path": "cache/docker" + }, + { + "name": "ccache", + "path": "cache/ccache" } ], "cipd_packages": [ @@ -3352,6 +3392,11 @@ "name": "infra/tools/luci/vpython/${platform}", "path": "cipd_bin_packages", "version": "git_revision:18e4e91040bcaae33d51a0179a9ada9319cde14d" + }, + { + "name": "skia/bots/ccache_linux", + "path": "ccache_linux", + "version": "version:1" } ], "command": [ @@ -3405,6 +3450,10 @@ { "name": "docker", "path": "cache/docker" + }, + { + "name": "ccache", + "path": "cache/ccache" } ], "cipd_packages": [ @@ -3422,6 +3471,11 @@ "name": "infra/tools/luci/vpython/${platform}", "path": "cipd_bin_packages", "version": "git_revision:18e4e91040bcaae33d51a0179a9ada9319cde14d" + }, + { + "name": "skia/bots/ccache_linux", + "path": "ccache_linux", + "version": "version:1" } ], "command": [ @@ -3475,6 +3529,10 @@ { "name": "docker", "path": "cache/docker" + }, + { + "name": "ccache", + "path": "cache/ccache" } ], "cipd_packages": [ @@ -3492,6 +3550,11 @@ "name": "infra/tools/luci/vpython/${platform}", "path": "cipd_bin_packages", "version": "git_revision:18e4e91040bcaae33d51a0179a9ada9319cde14d" + }, + { + "name": "skia/bots/ccache_linux", + "path": "ccache_linux", + "version": "version:1" } ], "command": [ @@ -3545,6 +3608,10 @@ { "name": "docker", "path": "cache/docker" + }, + { + "name": "ccache", + "path": "cache/ccache" } ], "cipd_packages": [ @@ -3562,6 +3629,11 @@ "name": "infra/tools/luci/vpython/${platform}", "path": "cipd_bin_packages", "version": "git_revision:18e4e91040bcaae33d51a0179a9ada9319cde14d" + }, + { + "name": "skia/bots/ccache_linux", + "path": "ccache_linux", + "version": "version:1" } ], "command": [ @@ -3615,6 +3687,10 @@ { "name": "docker", "path": "cache/docker" + }, + { + "name": "ccache", + "path": "cache/ccache" } ], "cipd_packages": [ @@ -3632,6 +3708,11 @@ "name": "infra/tools/luci/vpython/${platform}", "path": "cipd_bin_packages", "version": "git_revision:18e4e91040bcaae33d51a0179a9ada9319cde14d" + }, + { + "name": "skia/bots/ccache_linux", + "path": "ccache_linux", + "version": "version:1" } ], "command": [ @@ -3685,6 +3766,10 @@ { "name": "docker", "path": "cache/docker" + }, + { + "name": "ccache", + "path": "cache/ccache" } ], "cipd_packages": [ @@ -3702,6 +3787,11 @@ "name": "infra/tools/luci/vpython/${platform}", "path": "cipd_bin_packages", "version": "git_revision:18e4e91040bcaae33d51a0179a9ada9319cde14d" + }, + { + "name": "skia/bots/ccache_linux", + "path": "ccache_linux", + "version": "version:1" } ], "command": [ @@ -3755,6 +3845,10 @@ { "name": "docker", "path": "cache/docker" + }, + { + "name": "ccache", + "path": "cache/ccache" } ], "cipd_packages": [ @@ -3772,6 +3866,11 @@ "name": "infra/tools/luci/vpython/${platform}", "path": "cipd_bin_packages", "version": "git_revision:18e4e91040bcaae33d51a0179a9ada9319cde14d" + }, + { + "name": "skia/bots/ccache_linux", + "path": "ccache_linux", + "version": "version:1" } ], "command": [ @@ -5611,6 +5710,10 @@ { "name": "vpython", "path": "cache/vpython" + }, + { + "name": "ccache", + "path": "cache/ccache" } ], "cipd_packages": [ @@ -5633,6 +5736,11 @@ "name": "skia/bots/clang_linux", "path": "clang_linux", "version": "version:16" + }, + { + "name": "skia/bots/ccache_linux", + "path": "ccache_linux", + "version": "version:1" } ], "command": [ @@ -6056,6 +6164,10 @@ { "name": "vpython", "path": "cache/vpython" + }, + { + "name": "ccache", + "path": "cache/ccache" } ], "cipd_packages": [ @@ -6078,6 +6190,11 @@ "name": "skia/bots/clang_linux", "path": "clang_linux", "version": "version:16" + }, + { + "name": "skia/bots/ccache_linux", + "path": "ccache_linux", + "version": "version:1" } ], "command": [ @@ -6126,6 +6243,10 @@ { "name": "vpython", "path": "cache/vpython" + }, + { + "name": "ccache", + "path": "cache/ccache" } ], "cipd_packages": [ @@ -6148,6 +6269,11 @@ "name": "skia/bots/clang_linux", "path": "clang_linux", "version": "version:16" + }, + { + "name": "skia/bots/ccache_linux", + "path": "ccache_linux", + "version": "version:1" } ], "command": [ @@ -6196,6 +6322,10 @@ { "name": "vpython", "path": "cache/vpython" + }, + { + "name": "ccache", + "path": "cache/ccache" } ], "cipd_packages": [ @@ -6218,6 +6348,11 @@ "name": "skia/bots/clang_linux", "path": "clang_linux", "version": "version:16" + }, + { + "name": "skia/bots/ccache_linux", + "path": "ccache_linux", + "version": "version:1" } ], "command": [ @@ -6341,6 +6476,10 @@ { "name": "vpython", "path": "cache/vpython" + }, + { + "name": "ccache", + "path": "cache/ccache" } ], "cipd_packages": [ @@ -6363,6 +6502,11 @@ "name": "skia/bots/clang_linux", "path": "clang_linux", "version": "version:16" + }, + { + "name": "skia/bots/ccache_linux", + "path": "ccache_linux", + "version": "version:1" } ], "command": [ @@ -6411,6 +6555,10 @@ { "name": "vpython", "path": "cache/vpython" + }, + { + "name": "ccache", + "path": "cache/ccache" } ], "cipd_packages": [ @@ -6443,6 +6591,11 @@ "name": "skia/bots/opencl_ocl_icd_linux", "path": "opencl_ocl_icd_linux", "version": "version:0" + }, + { + "name": "skia/bots/ccache_linux", + "path": "ccache_linux", + "version": "version:1" } ], "command": [ @@ -6491,6 +6644,10 @@ { "name": "vpython", "path": "cache/vpython" + }, + { + "name": "ccache", + "path": "cache/ccache" } ], "cipd_packages": [ @@ -6513,6 +6670,11 @@ "name": "skia/bots/clang_linux", "path": "clang_linux", "version": "version:16" + }, + { + "name": "skia/bots/ccache_linux", + "path": "ccache_linux", + "version": "version:1" } ], "command": [ @@ -6561,6 +6723,10 @@ { "name": "vpython", "path": "cache/vpython" + }, + { + "name": "ccache", + "path": "cache/ccache" } ], "cipd_packages": [ @@ -6583,6 +6749,11 @@ "name": "skia/bots/clang_linux", "path": "clang_linux", "version": "version:16" + }, + { + "name": "skia/bots/ccache_linux", + "path": "ccache_linux", + "version": "version:1" } ], "command": [ @@ -6631,6 +6802,10 @@ { "name": "vpython", "path": "cache/vpython" + }, + { + "name": "ccache", + "path": "cache/ccache" } ], "cipd_packages": [ @@ -6653,6 +6828,11 @@ "name": "skia/bots/clang_linux", "path": "clang_linux", "version": "version:16" + }, + { + "name": "skia/bots/ccache_linux", + "path": "ccache_linux", + "version": "version:1" } ], "command": [ @@ -6701,6 +6881,10 @@ { "name": "vpython", "path": "cache/vpython" + }, + { + "name": "ccache", + "path": "cache/ccache" } ], "cipd_packages": [ @@ -6723,6 +6907,11 @@ "name": "skia/bots/clang_linux", "path": "clang_linux", "version": "version:16" + }, + { + "name": "skia/bots/ccache_linux", + "path": "ccache_linux", + "version": "version:1" } ], "command": [ @@ -6771,6 +6960,10 @@ { "name": "vpython", "path": "cache/vpython" + }, + { + "name": "ccache", + "path": "cache/ccache" } ], "cipd_packages": [ @@ -6793,6 +6986,11 @@ "name": "skia/bots/clang_linux", "path": "clang_linux", "version": "version:16" + }, + { + "name": "skia/bots/ccache_linux", + "path": "ccache_linux", + "version": "version:1" } ], "command": [ @@ -6841,6 +7039,10 @@ { "name": "vpython", "path": "cache/vpython" + }, + { + "name": "ccache", + "path": "cache/ccache" } ], "cipd_packages": [ @@ -6863,6 +7065,11 @@ "name": "skia/bots/clang_linux", "path": "clang_linux", "version": "version:16" + }, + { + "name": "skia/bots/ccache_linux", + "path": "ccache_linux", + "version": "version:1" } ], "command": [ @@ -6911,6 +7118,10 @@ { "name": "vpython", "path": "cache/vpython" + }, + { + "name": "ccache", + "path": "cache/ccache" } ], "cipd_packages": [ @@ -6938,6 +7149,11 @@ "name": "skia/bots/cmake_linux", "path": "cmake_linux", "version": "version:0" + }, + { + "name": "skia/bots/ccache_linux", + "path": "ccache_linux", + "version": "version:1" } ], "command": [ @@ -6986,6 +7202,10 @@ { "name": "vpython", "path": "cache/vpython" + }, + { + "name": "ccache", + "path": "cache/ccache" } ], "cipd_packages": [ @@ -7013,6 +7233,11 @@ "name": "skia/bots/cmake_linux", "path": "cmake_linux", "version": "version:0" + }, + { + "name": "skia/bots/ccache_linux", + "path": "ccache_linux", + "version": "version:1" } ], "command": [ @@ -7061,6 +7286,10 @@ { "name": "vpython", "path": "cache/vpython" + }, + { + "name": "ccache", + "path": "cache/ccache" } ], "cipd_packages": [ @@ -7083,6 +7312,11 @@ "name": "skia/bots/clang_linux", "path": "clang_linux", "version": "version:16" + }, + { + "name": "skia/bots/ccache_linux", + "path": "ccache_linux", + "version": "version:1" } ], "command": [ @@ -7131,6 +7365,10 @@ { "name": "vpython", "path": "cache/vpython" + }, + { + "name": "ccache", + "path": "cache/ccache" } ], "cipd_packages": [ @@ -7153,6 +7391,11 @@ "name": "skia/bots/clang_linux", "path": "clang_linux", "version": "version:16" + }, + { + "name": "skia/bots/ccache_linux", + "path": "ccache_linux", + "version": "version:1" } ], "command": [ @@ -7201,6 +7444,10 @@ { "name": "vpython", "path": "cache/vpython" + }, + { + "name": "ccache", + "path": "cache/ccache" } ], "cipd_packages": [ @@ -7223,6 +7470,11 @@ "name": "skia/bots/clang_linux", "path": "clang_linux", "version": "version:16" + }, + { + "name": "skia/bots/ccache_linux", + "path": "ccache_linux", + "version": "version:1" } ], "command": [ @@ -7271,6 +7523,10 @@ { "name": "vpython", "path": "cache/vpython" + }, + { + "name": "ccache", + "path": "cache/ccache" } ], "cipd_packages": [ @@ -7293,6 +7549,11 @@ "name": "skia/bots/clang_linux", "path": "clang_linux", "version": "version:16" + }, + { + "name": "skia/bots/ccache_linux", + "path": "ccache_linux", + "version": "version:1" } ], "command": [ @@ -7341,6 +7602,10 @@ { "name": "vpython", "path": "cache/vpython" + }, + { + "name": "ccache", + "path": "cache/ccache" } ], "cipd_packages": [ @@ -7363,6 +7628,11 @@ "name": "skia/bots/clang_linux", "path": "clang_linux", "version": "version:16" + }, + { + "name": "skia/bots/ccache_linux", + "path": "ccache_linux", + "version": "version:1" } ], "command": [ @@ -7411,6 +7681,10 @@ { "name": "vpython", "path": "cache/vpython" + }, + { + "name": "ccache", + "path": "cache/ccache" } ], "cipd_packages": [ @@ -7433,6 +7707,11 @@ "name": "skia/bots/clang_linux", "path": "clang_linux", "version": "version:16" + }, + { + "name": "skia/bots/ccache_linux", + "path": "ccache_linux", + "version": "version:1" } ], "command": [ @@ -7497,6 +7776,10 @@ { "name": "docker", "path": "cache/docker" + }, + { + "name": "ccache", + "path": "cache/ccache" } ], "cipd_packages": [ @@ -7534,6 +7817,11 @@ "name": "skia/bots/clang_linux", "path": "clang_linux", "version": "version:16" + }, + { + "name": "skia/bots/ccache_linux", + "path": "ccache_linux", + "version": "version:1" } ], "command": [ @@ -7657,6 +7945,10 @@ { "name": "vpython", "path": "cache/vpython" + }, + { + "name": "ccache", + "path": "cache/ccache" } ], "cipd_packages": [ @@ -7679,6 +7971,11 @@ "name": "skia/bots/clang_linux", "path": "clang_linux", "version": "version:16" + }, + { + "name": "skia/bots/ccache_linux", + "path": "ccache_linux", + "version": "version:1" } ], "command": [ @@ -7735,6 +8032,10 @@ { "name": "git_cache", "path": "cache/git_cache" + }, + { + "name": "ccache", + "path": "cache/ccache" } ], "cipd_packages": [ @@ -7772,6 +8073,11 @@ "name": "skia/bots/clang_linux", "path": "clang_linux", "version": "version:16" + }, + { + "name": "skia/bots/ccache_linux", + "path": "ccache_linux", + "version": "version:1" } ], "command": [ @@ -7819,6 +8125,10 @@ { "name": "vpython", "path": "cache/vpython" + }, + { + "name": "ccache", + "path": "cache/ccache" } ], "cipd_packages": [ @@ -7841,6 +8151,11 @@ "name": "skia/bots/clang_linux", "path": "clang_linux", "version": "version:16" + }, + { + "name": "skia/bots/ccache_linux", + "path": "ccache_linux", + "version": "version:1" } ], "command": [ @@ -7889,6 +8204,10 @@ { "name": "vpython", "path": "cache/vpython" + }, + { + "name": "ccache", + "path": "cache/ccache" } ], "cipd_packages": [ @@ -7911,6 +8230,11 @@ "name": "skia/bots/clang_linux", "path": "clang_linux", "version": "version:16" + }, + { + "name": "skia/bots/ccache_linux", + "path": "ccache_linux", + "version": "version:1" } ], "command": [ @@ -7959,6 +8283,10 @@ { "name": "vpython", "path": "cache/vpython" + }, + { + "name": "ccache", + "path": "cache/ccache" } ], "cipd_packages": [ @@ -7981,6 +8309,11 @@ "name": "skia/bots/clang_linux", "path": "clang_linux", "version": "version:16" + }, + { + "name": "skia/bots/ccache_linux", + "path": "ccache_linux", + "version": "version:1" } ], "command": [ @@ -8029,6 +8362,10 @@ { "name": "vpython", "path": "cache/vpython" + }, + { + "name": "ccache", + "path": "cache/ccache" } ], "cipd_packages": [ @@ -8051,6 +8388,11 @@ "name": "skia/bots/clang_linux", "path": "clang_linux", "version": "version:16" + }, + { + "name": "skia/bots/ccache_linux", + "path": "ccache_linux", + "version": "version:1" } ], "command": [ @@ -8099,6 +8441,10 @@ { "name": "vpython", "path": "cache/vpython" + }, + { + "name": "ccache", + "path": "cache/ccache" } ], "cipd_packages": [ @@ -8121,6 +8467,11 @@ "name": "skia/bots/clang_linux", "path": "clang_linux", "version": "version:16" + }, + { + "name": "skia/bots/ccache_linux", + "path": "ccache_linux", + "version": "version:1" } ], "command": [ @@ -8169,6 +8520,10 @@ { "name": "vpython", "path": "cache/vpython" + }, + { + "name": "ccache", + "path": "cache/ccache" } ], "cipd_packages": [ @@ -8191,6 +8546,11 @@ "name": "skia/bots/clang_linux", "path": "clang_linux", "version": "version:16" + }, + { + "name": "skia/bots/ccache_linux", + "path": "ccache_linux", + "version": "version:1" } ], "command": [ @@ -8239,6 +8599,10 @@ { "name": "vpython", "path": "cache/vpython" + }, + { + "name": "ccache", + "path": "cache/ccache" } ], "cipd_packages": [ @@ -8266,6 +8630,11 @@ "name": "skia/bots/cmake_linux", "path": "cmake_linux", "version": "version:0" + }, + { + "name": "skia/bots/ccache_linux", + "path": "ccache_linux", + "version": "version:1" } ], "command": [ @@ -8314,6 +8683,10 @@ { "name": "vpython", "path": "cache/vpython" + }, + { + "name": "ccache", + "path": "cache/ccache" } ], "cipd_packages": [ @@ -8336,6 +8709,11 @@ "name": "skia/bots/clang_linux", "path": "clang_linux", "version": "version:16" + }, + { + "name": "skia/bots/ccache_linux", + "path": "ccache_linux", + "version": "version:1" } ], "command": [ @@ -8384,6 +8762,10 @@ { "name": "vpython", "path": "cache/vpython" + }, + { + "name": "ccache", + "path": "cache/ccache" } ], "cipd_packages": [ @@ -8406,6 +8788,11 @@ "name": "skia/bots/clang_linux", "path": "clang_linux", "version": "version:16" + }, + { + "name": "skia/bots/ccache_linux", + "path": "ccache_linux", + "version": "version:1" } ], "command": [ @@ -8454,6 +8841,10 @@ { "name": "vpython", "path": "cache/vpython" + }, + { + "name": "ccache", + "path": "cache/ccache" } ], "cipd_packages": [ @@ -8476,6 +8867,11 @@ "name": "skia/bots/clang_linux", "path": "clang_linux", "version": "version:16" + }, + { + "name": "skia/bots/ccache_linux", + "path": "ccache_linux", + "version": "version:1" } ], "command": [ @@ -8524,6 +8920,10 @@ { "name": "vpython", "path": "cache/vpython" + }, + { + "name": "ccache", + "path": "cache/ccache" } ], "cipd_packages": [ @@ -8546,6 +8946,11 @@ "name": "skia/bots/clang_linux", "path": "clang_linux", "version": "version:16" + }, + { + "name": "skia/bots/ccache_linux", + "path": "ccache_linux", + "version": "version:1" } ], "command": [ @@ -8598,6 +9003,10 @@ { "name": "docker", "path": "cache/docker" + }, + { + "name": "ccache", + "path": "cache/ccache" } ], "cipd_packages": [ @@ -8615,6 +9024,11 @@ "name": "infra/tools/luci/vpython/${platform}", "path": "cipd_bin_packages", "version": "git_revision:18e4e91040bcaae33d51a0179a9ada9319cde14d" + }, + { + "name": "skia/bots/ccache_linux", + "path": "ccache_linux", + "version": "version:1" } ], "command": [ @@ -8668,6 +9082,10 @@ { "name": "docker", "path": "cache/docker" + }, + { + "name": "ccache", + "path": "cache/ccache" } ], "cipd_packages": [ @@ -8685,6 +9103,11 @@ "name": "infra/tools/luci/vpython/${platform}", "path": "cipd_bin_packages", "version": "git_revision:18e4e91040bcaae33d51a0179a9ada9319cde14d" + }, + { + "name": "skia/bots/ccache_linux", + "path": "ccache_linux", + "version": "version:1" } ], "command": [ @@ -8738,6 +9161,10 @@ { "name": "docker", "path": "cache/docker" + }, + { + "name": "ccache", + "path": "cache/ccache" } ], "cipd_packages": [ @@ -8755,6 +9182,11 @@ "name": "infra/tools/luci/vpython/${platform}", "path": "cipd_bin_packages", "version": "git_revision:18e4e91040bcaae33d51a0179a9ada9319cde14d" + }, + { + "name": "skia/bots/ccache_linux", + "path": "ccache_linux", + "version": "version:1" } ], "command": [ @@ -8808,6 +9240,10 @@ { "name": "docker", "path": "cache/docker" + }, + { + "name": "ccache", + "path": "cache/ccache" } ], "cipd_packages": [ @@ -8825,6 +9261,11 @@ "name": "infra/tools/luci/vpython/${platform}", "path": "cipd_bin_packages", "version": "git_revision:18e4e91040bcaae33d51a0179a9ada9319cde14d" + }, + { + "name": "skia/bots/ccache_linux", + "path": "ccache_linux", + "version": "version:1" } ], "command": [ @@ -8878,6 +9319,10 @@ { "name": "docker", "path": "cache/docker" + }, + { + "name": "ccache", + "path": "cache/ccache" } ], "cipd_packages": [ @@ -8895,6 +9340,11 @@ "name": "infra/tools/luci/vpython/${platform}", "path": "cipd_bin_packages", "version": "git_revision:18e4e91040bcaae33d51a0179a9ada9319cde14d" + }, + { + "name": "skia/bots/ccache_linux", + "path": "ccache_linux", + "version": "version:1" } ], "command": [ @@ -8948,6 +9398,10 @@ { "name": "docker", "path": "cache/docker" + }, + { + "name": "ccache", + "path": "cache/ccache" } ], "cipd_packages": [ @@ -8965,6 +9419,11 @@ "name": "infra/tools/luci/vpython/${platform}", "path": "cipd_bin_packages", "version": "git_revision:18e4e91040bcaae33d51a0179a9ada9319cde14d" + }, + { + "name": "skia/bots/ccache_linux", + "path": "ccache_linux", + "version": "version:1" } ], "command": [ @@ -9018,6 +9477,10 @@ { "name": "docker", "path": "cache/docker" + }, + { + "name": "ccache", + "path": "cache/ccache" } ], "cipd_packages": [ @@ -9035,6 +9498,11 @@ "name": "infra/tools/luci/vpython/${platform}", "path": "cipd_bin_packages", "version": "git_revision:18e4e91040bcaae33d51a0179a9ada9319cde14d" + }, + { + "name": "skia/bots/ccache_linux", + "path": "ccache_linux", + "version": "version:1" } ], "command": [ @@ -9088,6 +9556,10 @@ { "name": "docker", "path": "cache/docker" + }, + { + "name": "ccache", + "path": "cache/ccache" } ], "cipd_packages": [ @@ -9105,6 +9577,11 @@ "name": "infra/tools/luci/vpython/${platform}", "path": "cipd_bin_packages", "version": "git_revision:18e4e91040bcaae33d51a0179a9ada9319cde14d" + }, + { + "name": "skia/bots/ccache_linux", + "path": "ccache_linux", + "version": "version:1" } ], "command": [ @@ -14205,6 +14682,10 @@ { "name": "gopath", "path": "cache/gopath" + }, + { + "name": "ccache", + "path": "cache/ccache" } ], "cipd_packages": [ @@ -14247,6 +14728,11 @@ "name": "skia/bots/clang_linux", "path": "clang_linux", "version": "version:16" + }, + { + "name": "skia/bots/ccache_linux", + "path": "ccache_linux", + "version": "version:1" } ], "command": [