• Home
Name Date Size #Lines LOC

..--

builder_name_schema/03-May-2024-274197

core/03-May-2024-2,2891,861

ct/03-May-2024-391358

env/03-May-2024-10273

flavor/03-May-2024-8,4338,008

git/03-May-2024-7448

infra/03-May-2024-559511

isolate/03-May-2024-2,9322,713

run/03-May-2024-502446

skia_swarming/03-May-2024-1,2121,163

swarming/03-May-2024-4,7334,214

swarming_client/03-May-2024-341266

vars/03-May-2024-566496

README.mdD03-May-20241.4 KiB3627

README.md

1Skia Recipe Modules
2===================
3
4This directory contains recipe modules designed to be used by recipes (see
5infra/bots/recipes). They are all Skia-specific and some are interrelated:
6
7  * builder_name_schema - Helps to derive expected behavior from task (formerly
8      builder) names.
9  * core - Use as a starting point for most recipes: runs setup and sync steps.
10  * ct - Shared Cluster Telemetry utilities.
11  * flavor - Allows the caller to specify a high-level command to run, leaving
12      the platform-specific details to be handled by the specific flavor
13      module.
14  * infra - Shared infrastructure-related utilities.
15  * run - Utilities for running commands.
16  * swarming - Utilities for running Swarming tasks.
17  * vars - Common global variables used by Skia recipes/modules.
18
19When you change a recipe module, you generally need to re-train the simulation
20test:
21
22	$ python infra/bots/recipes.py test run --train
23
24Or:
25
26	$ cd infra/bots; make train
27
28Each recipe module contains a few files:
29
30  * api.py - This is the meat of the module.
31  * \_\_init\_\_.py - Contains a single DEPS variable, indicating the other
32      recipe modules on which this module depends.
33  * example.py - Optional, this file contains examples which demonstrate how to
34      use the module and should contain enough tests to achieve 100% coverage
35      for the module. The tests are run using the recipes test command above.
36