diff options
-rw-r--r-- | infra/bots/gen_tasks.go | 1 | ||||
-rw-r--r-- | infra/bots/tasks.json | 8 |
2 files changed, 9 insertions, 0 deletions
diff --git a/infra/bots/gen_tasks.go b/infra/bots/gen_tasks.go index 383c455c9f..ae94b08fcb 100644 --- a/infra/bots/gen_tasks.go +++ b/infra/bots/gen_tasks.go @@ -843,6 +843,7 @@ func housekeeper(b *specs.TasksCfgBuilder, name, compileTaskName string) string // in the generated chain of tasks, which the Job should add as a dependency. func bookmaker(b *specs.TasksCfgBuilder, name, compileTaskName string) string { task := kitchenTask(name, "bookmaker", "swarm_recipe.isolate", SERVICE_ACCOUNT_BOOKMAKER, linuxGceDimensions(), nil, OUTPUT_NONE) + task.Caches = append(task.Caches, CACHES_WORKDIR...) task.CipdPackages = append(task.CipdPackages, CIPD_PKGS_GIT...) task.CipdPackages = append(task.CipdPackages, b.MustGetCipdPackageFromAsset("go")) task.Dependencies = append(task.Dependencies, compileTaskName) diff --git a/infra/bots/tasks.json b/infra/bots/tasks.json index 5a624ec727..d95524d87c 100644 --- a/infra/bots/tasks.json +++ b/infra/bots/tasks.json @@ -16722,6 +16722,10 @@ { "name": "vpython", "path": "cache/vpython" + }, + { + "name": "work", + "path": "cache/work" } ], "cipd_packages": [ @@ -17204,6 +17208,10 @@ { "name": "vpython", "path": "cache/vpython" + }, + { + "name": "work", + "path": "cache/work" } ], "cipd_packages": [ |