Name Date Size

..25-Oct-20244 KiB

check_generated_files.expected/H25-Oct-20244 KiB

check_generated_files.pyH A D25-Oct-20242.3 KiB

compile.expected/H25-Oct-20244 KiB

compile.pyH A D25-Oct-20242 KiB

compute_buildstats.expected/H25-Oct-20244 KiB

compute_buildstats.pyH A D25-Oct-202412.4 KiB

housekeeper.expected/H25-Oct-20244 KiB

housekeeper.pyH A D25-Oct-20241.8 KiB

infra.expected/H25-Oct-20244 KiB

infra.pyH A D25-Oct-20242.5 KiB

perf.expected/H25-Oct-20244 KiB

perf.pyH A D25-Oct-20244.9 KiB

perf_pathkit.expected/H25-Oct-20244 KiB

perf_pathkit.pyH A D25-Oct-20244.4 KiB

perf_skottietrace.expected/H25-Oct-20244 KiB

perf_skottietrace.pyH A D25-Oct-202413.5 KiB

perf_skottiewasm_lottieweb.expected/H25-Oct-20244 KiB

perf_skottiewasm_lottieweb.pyH A D25-Oct-202420 KiB

README.mdH A D25-Oct-2024822

skpbench.expected/H25-Oct-20244 KiB

skpbench.pyH A D25-Oct-20247.6 KiB

sync_and_compile.expected/H25-Oct-20244 KiB

sync_and_compile.pyH A D25-Oct-20243 KiB

test.expected/H25-Oct-20244 KiB

test.pyH A D25-Oct-20247 KiB

test_canvaskit.expected/H25-Oct-20244 KiB

test_canvaskit.pyH A D25-Oct-20243.5 KiB

test_lottie_web.expected/H25-Oct-20244 KiB

test_lottie_web.pyH A D25-Oct-20244.2 KiB

test_pathkit.expected/H25-Oct-20244 KiB

test_pathkit.pyH A D25-Oct-20245 KiB

upload_buildstats_results.expected/H25-Oct-20244 KiB

upload_buildstats_results.pyH A D25-Oct-20242.1 KiB

upload_dm_results.expected/H25-Oct-20244 KiB

upload_dm_results.pyH A D25-Oct-20244.1 KiB

upload_nano_results.expected/H25-Oct-20244 KiB

upload_nano_results.pyH A D25-Oct-20242 KiB

README.md

1Skia Recipes
2============
3
4These are the top-level scripts which run inside of Swarming tasks to perform
5all of Skia's automated testing.
6
7To run a recipe locally:
8
9	$ python infra/bots/recipes.py run --workdir=/tmp/<workdir> <recipe name without .py> key1=value1 key2=value2 ...
10
11Each recipe may have its own required properties which must be entered as
12key/value pairs in the command.
13
14When you change a recipe, you generally need to re-train the simulation test:
15
16	$ python infra/bots/recipes.py test train
17
18Or:
19
20        $ cd infra/bots; make train
21
22The test generates expectations files for the tests contained within each
23recipe which illustrate which steps would run, given a particular set of inputs.
24Pay attention to the diffs in these files when making changes to ensure that
25your change has the intended effect.
26