• Home
  • History
  • Annotate
  • only in /external/skia/infra/bots/
NameDateSize

..10-Aug-20184 KiB

android_bin.isolate10-Aug-2018166

android_compile/10-Aug-20184 KiB

assets/10-Aug-20184 KiB

assets.isolate10-Aug-201865

bootstrap_win_toolchain_json.py10-Aug-2018630

bundle_recipes.isolate10-Aug-2018267

calmbench.isolate10-Aug-2018231

cfg.json10-Aug-2018295

compile_skia.isolate10-Aug-2018124

coverage_skia.isolate10-Aug-2018196

ct/10-Aug-20184 KiB

ct_skps_skia.isolate10-Aug-201878

gen_tasks.go10-Aug-201849.6 KiB

git_utils.py10-Aug-20185 KiB

housekeeper_skia.isolate10-Aug-2018124

infra_skia.isolate10-Aug-2018124

infra_tests.py10-Aug-20182 KiB

infrabots.isolate10-Aug-201895

ios_bin.isolate10-Aug-2018302

isolate_android_sdk_linux.isolate10-Aug-2018117

isolate_ndk_linux.isolate10-Aug-2018117

isolate_skimage.isolate10-Aug-2018107

isolate_skp.isolate10-Aug-2018103

isolate_svg.isolate10-Aug-2018103

isolate_win_toolchain.isolate10-Aug-2018101

isolate_win_vulkan_sdk.isolate10-Aug-2018114

jobs.json10-Aug-201834.2 KiB

Makefile10-Aug-201868

meta_config.isolate10-Aug-201853

OWNERS10-Aug-2018126

perf_skia.isolate10-Aug-2018199

perf_skia_bundled.isolate10-Aug-2018228

perf_skia_bundled_unix.isolate10-Aug-201899

perf_skia_bundled_win.isolate10-Aug-201898

presubmit_skia.isolate10-Aug-2018124

README.md10-Aug-20183.4 KiB

recipe_modules/10-Aug-20184 KiB

recipes/10-Aug-20184 KiB

recipes.py10-Aug-20186.9 KiB

resources.isolate10-Aug-201874

skia_repo.isolate10-Aug-201899

skpbench_skia.isolate10-Aug-2018154

skpbench_skia_bundled.isolate10-Aug-2018184

skpbench_skia_bundled_unix.isolate10-Aug-2018103

skpbench_skia_bundled_win.isolate10-Aug-2018102

swarm_recipe.isolate10-Aug-2018240

swarm_recipe_bundled_unix.isolate10-Aug-2018113

swarm_recipe_bundled_win.isolate10-Aug-2018117

tasks.json10-Aug-20181 MiB

test_skia.isolate10-Aug-2018199

test_skia_bundled.isolate10-Aug-2018228

test_skia_bundled_unix.isolate10-Aug-201899

test_skia_bundled_win.isolate10-Aug-201898

test_utils.py10-Aug-20182 KiB

tools/10-Aug-20184 KiB

update_meta_config.py10-Aug-20183.7 KiB

upload_coverage_results.isolate10-Aug-2018124

upload_dm_results.isolate10-Aug-2018124

upload_md.py10-Aug-20182.7 KiB

upload_nano_results.isolate10-Aug-2018124

upload_skps.py10-Aug-20182.2 KiB

utils.py10-Aug-20186.5 KiB

win_toolchain_utils.py10-Aug-20181.7 KiB

zip_utils.py10-Aug-20182.3 KiB

zip_utils_test.py10-Aug-20181.9 KiB

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  * android_map.json - Maps human-friendly names of Android devices to their
30      device codename and desired OS version. Edit this file when adding a new
31      type of Android device or updating the desired OS version.
32  * cfg.json - Basic configuration information for gen_tasks.go.
33  * gpu_map.json - Maps human-friendly names of GPUs to an appropriate Swarming
34      dimension, typically the PCI ID of the GPU. Edit this file when adding a
35      new GPU.
36  * jobs.json - The master list of all jobs to run. Edit this to add or remove
37      bots.
38
39Whenever gen_tasks.go, any of the above JSON files, or assets are changed, you
40need to run gen_tasks.go to regenerate tasks.json:
41
42	$ go run infra/bots/gen_tasks.go
43
44Or:
45
46	$ cd infra/bots; make train
47
48There is also a test mode which performs sanity-checks and verifies that
49tasks.json is unchanged:
50
51	$ go run infra/bots/gen_tasks.go --test
52
53Or:
54
55	$ cd infra/bots; make test
56
57
58Recipes
59-------
60
61Recipes are the framework used by Skia's infrastructure to perform work inside
62of Swarming tasks. The main elements are:
63
64  * recipes.py - Used for running and testing recipes.
65  * recipes - These are the entry points for each type of task, eg. compiling
66      or running tests.
67  * recipe_modules - Shared modules which are used by recipes.
68  * .recipe_deps - Recipes and modules may depend on modules from other repos.
69      The recipes.py script automatically syncs those dependencies in this
70      directory.
71
72
73Isolate Files
74-------------
75
76These files determine which parts of the repository are transferred to the bot
77when a Swarming task is triggered. The
78[Isolate tool](https://github.com/luci/luci-py/tree/master/appengine/isolate/doc)
79hashes each file and will upload any new/changed files. Bots maintain a cache so
80that they can efficiently download only the files they don't have.
81
82
83Assets
84------
85
86Artifacts used by the infrastructure are versioned here, along with scripts for
87recreating/uploading/downloading them. See the README in that directory for more
88information. Any time an asset used by the bots changes, you need to re-run
89gen_tasks.go.
90
91
92Tools
93-----
94
95Assorted other infrastructure-related tools, eg. isolate and CIPD binaries.
96
97
98CT
99--
100
101Helpers for running Skia tasks in Cluster Telemetry.
102
103