• Home
Name Date Size #Lines LOC

..--

android_compile/03-May-2024-238184

assets/03-May-2024-6,5483,299

buildstats/03-May-2024-438281

g3_compile/03-May-2024-213159

gen_tasks_logic/03-May-2024-1,9591,587

recipe_modules/03-May-2024-41,14839,684

recipes/03-May-2024-75,29874,236

tools/luci-go/03-May-2024-1710

MakefileD03-May-202468 64

OWNERSD03-May-2024106 65

README.mdD03-May-20243 KiB9764

assets.isolateD03-May-202465 87

build_task_drivers.shD03-May-2024919 2817

bundle_recipes.shD03-May-2024284 146

calmbench.isolateD03-May-2024134 1110

canvaskit.isolateD03-May-2024257 1413

cfg.jsonD03-May-20241.1 KiB2726

check_deps.pyD03-May-20241.7 KiB6541

compile.isolateD03-May-20241.9 KiB5958

compile_android_framework.isolateD03-May-2024147 1211

compile_g3_framework.isolateD03-May-2024147 1211

empty.isolateD03-May-20243

gen_compile_isolate.pyD03-May-20246.6 KiB235174

gen_tasks.goD03-May-2024359 197

git_utils.pyD03-May-20245.5 KiB150119

infra_tests.isolateD03-May-2024189 1413

infra_tests.pyD03-May-20241.8 KiB9062

infrabots.isolateD03-May-202460 87

ios_bin.isolateD03-May-202487 87

isolate_android_sdk_linux.isolateD03-May-2024117 87

isolate_gcloud_linux.isolateD03-May-2024112 87

isolate_go.isolateD03-May-2024102 87

jobs.jsonD03-May-202437.9 KiB599598

lottie_web.isolateD03-May-2024134 1110

pathkit.isolateD03-May-2024148 1211

perf_skia_bundled.isolateD03-May-2024202 1413

recipes.isolateD03-May-2024196 1312

recipes.pyD03-May-20247.6 KiB243156

resources.isolateD03-May-202474 87

run_recipe.isolateD03-May-202498 98

run_recipe.pyD03-May-20241.2 KiB4028

skottie_wasm.isolateD03-May-2024136 1110

skpbench_skia_bundled.isolateD03-May-2024185 1312

skqp.isolateD03-May-2024114 1110

swarm_recipe.isolateD03-May-202498 98

task_drivers.isolateD03-May-2024150 1110

tasks.jsonD03-May-20242.6 MiB75,74975,748

test_skia_bundled.isolateD03-May-2024202 1413

test_utils.pyD03-May-20242 KiB7450

update_meta_config.pyD03-May-20242 KiB7648

upload_skps.pyD03-May-20242.6 KiB7549

utils.pyD03-May-20246.5 KiB203144

zip_utils.pyD03-May-20242.4 KiB7859

zip_utils_test.pyD03-May-20241.9 KiB7545

README.md

1Skia Infrastructure
2===================
3
4This directory contains infrastructure elements.
5
6
7Tasks and Jobs
8--------------
9
10Files in this directory define a DAG of tasks which run at every Skia commit. A
11task is a small, self-contained unit which runs via Swarming on a machine in the
12pool. Tasks may be chained together, eg. one task to compile test binaries and
13another to actually run them.
14
15Jobs are collections of related tasks which help define sub-sections of the DAG,
16for example, to be used as try jobs. Each job is defined as an entry point into
17the DAG.
18
19The tasks.json file in this directory is the master list of tasks and jobs for
20the repo. Note that tasks.json is NEVER edited by hand but generated via
21gen_task.go and the input files enumerated below. The
22[Task Scheduler](https://skia.googlesource.com/buildbot/+/master/task_scheduler/README.md)
23reads the tasks.json file at each commit to determine which jobs to run. For
24convenience, gen_tasks.go is provided to generate tasks.json and also to test it
25for correct syntax and detecting cycles and orphaned tasks. Always edit
26gen_tasks.go or one of the following input JSON files, rather than tasks.json
27itself:
28
29  * cfg.json - Basic configuration information for gen_tasks.go.
30  * jobs.json - The master list of all jobs to run. Edit this to add or remove
31      bots.
32
33Whenever gen_tasks.go, any of the above JSON files, or assets are changed, you
34need to run gen_tasks.go to regenerate tasks.json:
35
36	$ go run infra/bots/gen_tasks.go
37
38Or:
39
40	$ cd infra/bots; make train
41
42There is also a test mode which performs sanity-checks and verifies that
43tasks.json is unchanged:
44
45	$ go run infra/bots/gen_tasks.go --test
46
47Or:
48
49	$ cd infra/bots; make test
50
51
52Recipes
53-------
54
55Recipes are the framework used by Skia's infrastructure to perform work inside
56of Swarming tasks. The main elements are:
57
58  * recipes.py - Used for running and testing recipes.
59  * recipes - These are the entry points for each type of task, eg. compiling
60      or running tests.
61  * recipe_modules - Shared modules which are used by recipes.
62  * .recipe_deps - Recipes and modules may depend on modules from other repos.
63      The recipes.py script automatically syncs those dependencies in this
64      directory.
65
66
67Isolate Files
68-------------
69
70These files determine which parts of the repository are transferred to the bot
71when a Swarming task is triggered. The
72[Isolate tool](https://github.com/luci/luci-py/tree/master/appengine/isolate/doc)
73hashes each file and will upload any new/changed files. Bots maintain a cache so
74that they can efficiently download only the files they don't have.
75
76
77Assets
78------
79
80Artifacts used by the infrastructure are versioned here, along with scripts for
81recreating/uploading/downloading them. See the README in that directory for more
82information. Any time an asset used by the bots changes, you need to re-run
83gen_tasks.go.
84
85
86Tools
87-----
88
89Assorted other infrastructure-related tools, eg. isolate and CIPD binaries.
90
91
92CT
93--
94
95Helpers for running Skia tasks in Cluster Telemetry.
96
97