|
Name |
|
Date |
Size |
#Lines |
LOC |
| .. | | - | - |
| compile.expected/ | H | 25-Apr-2025 | - | 95 | 95 |
| compute_buildstats.expected/ | H | 25-Apr-2025 | - | 1,078 | 1,078 |
| housekeeper.expected/ | H | 25-Apr-2025 | - | 296 | 296 |
| infra.expected/ | H | 25-Apr-2025 | - | 245 | 245 |
| perf.expected/ | H | 25-Apr-2025 | - | 1,189 | 1,189 |
| perf_pathkit.expected/ | H | 25-Apr-2025 | - | 755 | 755 |
| perf_skottietrace.expected/ | H | 25-Apr-2025 | - | 3,410 | 3,410 |
| perf_skottiewasm_lottieweb.expected/ | H | 25-Apr-2025 | - | 1,854 | 1,854 |
| sync_and_compile.expected/ | H | 25-Apr-2025 | - | 860 | 860 |
| test.expected/ | H | 25-Apr-2025 | - | 2,534 | 2,534 |
| test_canvaskit.expected/ | H | 25-Apr-2025 | - | 538 | 538 |
| test_lottie_web.expected/ | H | 25-Apr-2025 | - | 476 | 476 |
| test_pathkit.expected/ | H | 25-Apr-2025 | - | 973 | 973 |
| upload_buildstats_results.expected/ | H | 25-Apr-2025 | - | 98 | 98 |
| upload_dm_results.expected/ | H | 25-Apr-2025 | - | 461 | 461 |
| upload_nano_results.expected/ | H | 25-Apr-2025 | - | 72 | 72 |
| README.md | H A D | 25-Apr-2025 | 822 | 26 | 16 |
| compile.py | H A D | 25-Apr-2025 | 1.7 KiB | 68 | 47 |
| compute_buildstats.py | H A D | 25-Apr-2025 | 12.3 KiB | 410 | 344 |
| housekeeper.py | H A D | 25-Apr-2025 | 1.8 KiB | 62 | 43 |
| infra.py | H A D | 25-Apr-2025 | 2.5 KiB | 82 | 56 |
| perf.py | H A D | 25-Apr-2025 | 4.8 KiB | 166 | 134 |
| perf_pathkit.py | H A D | 25-Apr-2025 | 4.4 KiB | 133 | 107 |
| perf_skottietrace.py | H A D | 25-Apr-2025 | 13.4 KiB | 326 | 274 |
| perf_skottiewasm_lottieweb.py | H A D | 25-Apr-2025 | 15.4 KiB | 391 | 327 |
| sync_and_compile.py | H A D | 25-Apr-2025 | 6.7 KiB | 168 | 100 |
| test.py | H A D | 25-Apr-2025 | 6.5 KiB | 207 | 164 |
| test_canvaskit.py | H A D | 25-Apr-2025 | 3.4 KiB | 110 | 91 |
| test_lottie_web.py | H A D | 25-Apr-2025 | 4.2 KiB | 123 | 91 |
| test_pathkit.py | H A D | 25-Apr-2025 | 5 KiB | 151 | 123 |
| upload_buildstats_results.py | H A D | 25-Apr-2025 | 2.1 KiB | 78 | 58 |
| upload_dm_results.py | H A D | 25-Apr-2025 | 4.1 KiB | 136 | 101 |
| upload_nano_results.py | H A D | 25-Apr-2025 | 2 KiB | 78 | 58 |
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