Home | History | Annotate | only in /external/skia/infra/bots
Up to higher level directory
NameDateSize
android_bin.isolate06-Dec-2017166
assets/06-Dec-2017
assets.isolate06-Dec-201765
bootstrap_win_toolchain_json.py06-Dec-2017630
bundle_recipes.isolate06-Dec-2017267
cfg.json06-Dec-2017216
compile_skia.isolate06-Dec-2017124
coverage_skia.isolate06-Dec-2017196
ct/06-Dec-2017
ct_skps_skia.isolate06-Dec-201778
gen_tasks.go06-Dec-201734.7K
git_utils.py06-Dec-20174.8K
housekeeper_skia.isolate06-Dec-2017124
infra_skia.isolate06-Dec-2017124
infra_tests.py06-Dec-20172K
infrabots.isolate06-Dec-201795
ios_bin.isolate06-Dec-2017376
isolate_skimage.isolate06-Dec-2017107
isolate_skp.isolate06-Dec-2017103
isolate_svg.isolate06-Dec-2017103
jobs.json06-Dec-201721.9K
Makefile06-Dec-201768
meta_config.isolate06-Dec-201753
OWNERS06-Dec-2017126
perf_skia.isolate06-Dec-2017199
perf_skia_bundled.isolate06-Dec-2017228
perf_skia_bundled_unix.isolate06-Dec-201799
perf_skia_bundled_win.isolate06-Dec-201798
presubmit_skia.isolate06-Dec-2017124
README.md06-Dec-20173.4K
recipe_modules/06-Dec-2017
recipes/06-Dec-2017
recipes.py06-Dec-20176.5K
resources.isolate06-Dec-201774
skia_repo.isolate06-Dec-201799
skpbench_skia.isolate06-Dec-2017154
skpbench_skia_bundled.isolate06-Dec-2017184
skpbench_skia_bundled_unix.isolate06-Dec-2017103
skpbench_skia_bundled_win.isolate06-Dec-2017102
swarm_recipe.isolate06-Dec-2017240
swarm_recipe_bundled_unix.isolate06-Dec-2017113
swarm_recipe_bundled_win.isolate06-Dec-2017117
tasks.json06-Dec-2017670.4K
test_skia.isolate06-Dec-2017199
test_skia_bundled.isolate06-Dec-2017228
test_skia_bundled_unix.isolate06-Dec-201799
test_skia_bundled_win.isolate06-Dec-201798
test_utils.py06-Dec-20172K
tools/06-Dec-2017
update_meta_config.py06-Dec-20173.4K
upload_dm_results.isolate06-Dec-2017124
upload_nano_results.isolate06-Dec-2017124
upload_skps.py06-Dec-20172.2K
utils.py06-Dec-20176.5K
win_toolchain_utils.py06-Dec-20171.7K
zip_utils.py06-Dec-20171.9K
zip_utils_test.py06-Dec-20171.9K

README.md

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