README.md
1# Luci Infrastructure
2
3This directory contains the configuration and build recipes run by our luci infrastructure for CI
4and presubmit testing.
5
6Note: Luci applies config and recipes changes asynchronously. Do not submit changes to this
7directory in the same commit as changes to other crosvm source.
8
9## Recipes
10
11### Recipe Documentation
12
13A few links to relevant documentation needed to write recipes:
14
15- [Recipe Engine](https://chromium.googlesource.com/infra/luci/recipes-py.git/+/HEAD/README.recipes.md)
16- [Depot Tools Recipes](https://chromium.googlesource.com/chromium/tools/depot_tools.git/+/HEAD/recipes/README.recipes.md))
17- [ChromiumOS Recipes](https://chromium.googlesource.com/chromiumos/infra/recipes.git/+/HEAD/README.recipes.md)
18
19Luci also provides a
20[User Guide](https://chromium.googlesource.com/infra/luci/recipes-py/+/master/doc/user_guide.md) and
21[Walkthrough](https://chromium.googlesource.com/infra/luci/recipes-py/+/refs/heads/main/doc/walkthrough.md)
22for getting started with recipes.
23
24For writing tests, documentation can be found in the
25[Recipe test API](https://chromium.googlesource.com/infra/luci/recipes-py/+/HEAD/recipe_engine/recipe_test_api.py)
26and
27[Post Process API](https://chromium.googlesource.com/infra/luci/recipes-py/+/HEAD/recipe_engine/post_process.py)
28
29### Running recipe tests
30
31Recipes must have 100% code coverage to have tests pass. Tests can be run with:
32
33```
34cd infra && ./recipes.py test run
35```
36
37Most tests execute a few example invocations, record the commands that would be executed and compare
38them to the json files in `*.expected`. This allows developers to catch unwanted side-effects of
39their changes.
40
41To regenerate the expectation files, run:
42
43```
44cd infra && ./recipes.py test train
45```
46
47Then verify the `git diff` to make sure all changes to outcomes are intentional.
48
49### Testing recipes locally
50
51We try to build our recipes to work well locally, so for example build_linux.py can be invoked in
52the recipe engine via:
53
54```
55cd infra && ./recipes.py run build_linux
56```
57
58When run locally, recipes that check out crosvm, will run against the current HEAD of the main
59branch.
60
61The recipe will run in the local `infra/.recipe_deps/recipe_engine/workdir` directory and is
62preserved between runs in the same way data is preserved on bots, so incremental builds or the use
63of cached files can be tested.
64
65### Testing recipes on a bot (Googlers only)
66
67Note: See internal [crosvm/infra](http://go/crosvm/infra) documentation on access control.
68
69Some things cannot be tested locally and need to be run on one of our build bots. This can be done
70with the [led](http://go/luci-how-to-led) tool.
71
72Commonly used led commands are:
73
74- `led get-builder $NAME` will download and output the job template for that builder.
75- `led get-build $BBID` will download the job definition of a previous build.
76- `led edit-recipe-bundle` will update the job to use your local version recipes
77- `led edit-cr-cl` will update the job to run on a gerrit change
78- `led launch` launches a new job using the input job definition.
79
80Important: Changes to recipes are applied separately from changes to crosvm code.
81
82#### Testing recipe changes on post-submit builders
83
84To test a local recipe change, you can launch a post-submit build using `led`. First `git commit`
85your recipe changes locally, then combine the led commands to:
86
87```
88led get-builder luci.crosvm.ci:linux_x86_64
89 | led-edit-recipe-bundle
90 | led launch
91```
92
93This will run the `linux_x86_64` builder on the current `main` revision of crosvm using the local
94version of recipes.
95
96Important: Changes to crosvm source outside of recipes will not be part of the build.
97
98#### Testing recipe and source changes on pre-submit builders
99
100If we want to test a combination of both recipe and source changes, we can test those on a
101pre-submit builder, which patch in a gerrit change to test.
102
103We can specify that gerrit change via `led edit-cr-cl`.
104
105So to test, first `git commit` and `./tools/cl upload` your local changes. Then build a job
106definition to run:
107
108```
109led get-builder luci.crosvm.try:linux_x86_64
110 | led-edit-recipe-bundle
111 | led-edit-cr-cl $GERRIT_URL
112 | led launch
113```
114
115This will launch a presubmit builder using the local version of recipes, and runs it on the gerrit
116change at $GERRIT_URL.
117
118#### Testing a new recipe
119
120This is a little tricker, but you can change the recipe name that is launched by `led`. So you can:
121
122```
123led get-builder luci.crosvm.ci:linux_x86_64 > job.json
124```
125
126Then edit the `job.json` file to use the newly added recipe, and launch the job using the local
127version of recipes.
128
129```
130cat job.json | led-edit-recipe-bundle | led launch
131```
132
README.recipes.md
1<!--- AUTOGENERATED BY `./recipes.py test train` -->
2# Repo documentation for [crosvm](https://chromium.googlesource.com/crosvm/crosvm.git)
3## Table of Contents
4
5**[Recipe Modules](#Recipe-Modules)**
6 * [crosvm](#recipe_modules-crosvm)
7
8**[Recipes](#Recipes)**
9 * [build_baguette_image](#recipes-build_baguette_image) — Recipe for building a Baguette rootfs image.
10 * [build_chromeos_hatch](#recipes-build_chromeos_hatch)
11 * [build_docs](#recipes-build_docs)
12 * [build_linux](#recipes-build_linux)
13 * [build_windows](#recipes-build_windows)
14 * [crosvm:examples/container_build_context](#recipes-crosvm_examples_container_build_context)
15 * [crosvm:examples/cros_container_build_context](#recipes-crosvm_examples_cros_container_build_context)
16 * [crosvm:examples/host_build_context](#recipes-crosvm_examples_host_build_context)
17 * [crosvm:examples/source_context](#recipes-crosvm_examples_source_context)
18 * [health_check](#recipes-health_check)
19 * [presubmit](#recipes-presubmit)
20 * [push_to_github](#recipes-push_to_github)
21 * [update_chromeos_merges](#recipes-update_chromeos_merges)
22## Recipe Modules
23
24### *recipe_modules* / [crosvm](/infra/recipe_modules/crosvm)
25
26[DEPS](/infra/recipe_modules/crosvm/__init__.py#7): [depot\_tools/bot\_update][depot_tools/recipe_modules/bot_update], [depot\_tools/gclient][depot_tools/recipe_modules/gclient], [depot\_tools/git][depot_tools/recipe_modules/git], [recipe\_engine/buildbucket][recipe_engine/recipe_modules/buildbucket], [recipe\_engine/cipd][recipe_engine/recipe_modules/cipd], [recipe\_engine/context][recipe_engine/recipe_modules/context], [recipe\_engine/file][recipe_engine/recipe_modules/file], [recipe\_engine/path][recipe_engine/recipe_modules/path], [recipe\_engine/platform][recipe_engine/recipe_modules/platform], [recipe\_engine/raw\_io][recipe_engine/recipe_modules/raw_io], [recipe\_engine/step][recipe_engine/recipe_modules/step]
27
28
29#### **class [CrosvmApi](/infra/recipe_modules/crosvm/api.py#11)([RecipeApi][recipe_engine/wkt/RecipeApi]):**
30
31Crosvm specific functionality shared between recipes.
32
33  **@property**<br>— **def [builder\_cache](/infra/recipe_modules/crosvm/api.py#43)(self):**
34
35Dedicated cache directory for each builder.
36
37Luci will try to run each builder on the same bot as previously to keep this cache present.
38
39  **@property**<br>— **def [cargo\_home](/infra/recipe_modules/crosvm/api.py#24)(self):**
40
41CARGO_HOME is cached between runs.
42
43  **@property**<br>— **def [cargo\_target\_dir](/infra/recipe_modules/crosvm/api.py#29)(self):**
44
45CARGO_TARGET_DIR is cleaned up between runs
46
47— **def [container\_build\_context](/infra/recipe_modules/crosvm/api.py#62)(self):**
48
49Prepares source and system to build crosvm via dev container.
50
51Usage:
52 with api.crosvm.container_build_context():
53 api.crosvm.step_in_container("build crosvm", ["cargo build"])
54
55— **def [cros\_container\_build\_context](/infra/recipe_modules/crosvm/api.py#79)(self):**
56
57Prepares source and system to build crosvm via cros container.
58
59Usage:
60 with api.crosvm.cros_container_build_context():
61 api.crosvm.step_in_container("build crosvm", ["cargo build"], cros=True)
62
63  **@property**<br>— **def [dev\_container\_cache](/infra/recipe_modules/crosvm/api.py#39)(self):**
64
65— **def [get\_git\_sha](/infra/recipe_modules/crosvm/api.py#186)(self):**
66
67— **def [host\_build\_context](/infra/recipe_modules/crosvm/api.py#113)(self):**
68
69Prepares source and system to build crosvm directly on the host.
70
71This will install the required rust version via rustup. However no further dependencies
72are installed.
73
74Usage:
75 with api.crosvm.host_build_context():
76 api.step("build crosvm", ["cargo build"])
77
78  **@property**<br>— **def [local\_bin](/infra/recipe_modules/crosvm/api.py#34)(self):**
79
80Directory used to install local tools required by the build.
81
82— **def [prepare\_git](/infra/recipe_modules/crosvm/api.py#161)(self):**
83
84  **@property**<br>— **def [rustup\_home](/infra/recipe_modules/crosvm/api.py#19)(self):**
85
86RUSTUP_HOME is cached between runs.
87
88— **def [source\_context](/infra/recipe_modules/crosvm/api.py#52)(self):**
89
90Updates the source to the revision to be tested and drops into the source directory.
91
92Use when no build commands are needed.
93
94  **@property**<br>— **def [source\_dir](/infra/recipe_modules/crosvm/api.py#14)(self):**
95
96Where the crosvm source will be checked out.
97
98— **def [step\_in\_container](/infra/recipe_modules/crosvm/api.py#144)(self, step_name, command, cros=False, \*\*kwargs):**
99
100Runs a luci step inside the crosvm dev container.
101
102— **def [upload\_coverage](/infra/recipe_modules/crosvm/api.py#194)(self, filename):**
103## Recipes
104
105### *recipes* / [build\_baguette\_image](/infra/recipes/build_baguette_image.py)
106
107[DEPS](/infra/recipes/build_baguette_image.py#19): [depot\_tools/bot\_update][depot_tools/recipe_modules/bot_update], [depot\_tools/depot\_tools][depot_tools/recipe_modules/depot_tools], [depot\_tools/gclient][depot_tools/recipe_modules/gclient], [depot\_tools/git][depot_tools/recipe_modules/git], [depot\_tools/gsutil][depot_tools/recipe_modules/gsutil], [recipe\_engine/buildbucket][recipe_engine/recipe_modules/buildbucket], [recipe\_engine/context][recipe_engine/recipe_modules/context], [recipe\_engine/file][recipe_engine/recipe_modules/file], [recipe\_engine/path][recipe_engine/recipe_modules/path], [recipe\_engine/properties][recipe_engine/recipe_modules/properties], [recipe\_engine/raw\_io][recipe_engine/recipe_modules/raw_io], [recipe\_engine/step][recipe_engine/recipe_modules/step], [recipe\_engine/time][recipe_engine/recipe_modules/time]
108
109
110Recipe for building a Baguette rootfs image.
111
112— **def [RunSteps](/infra/recipes/build_baguette_image.py#49)(api: RecipeApi, properties: BuildBaguetteImageProperties):**
113### *recipes* / [build\_chromeos\_hatch](/infra/recipes/build_chromeos_hatch.py)
114
115[DEPS](/infra/recipes/build_chromeos_hatch.py#7): [crosvm](#recipe_modules-crosvm), [depot\_tools/depot\_tools][depot_tools/recipe_modules/depot_tools], [recipe\_engine/buildbucket][recipe_engine/recipe_modules/buildbucket], [recipe\_engine/context][recipe_engine/recipe_modules/context], [recipe\_engine/properties][recipe_engine/recipe_modules/properties], [recipe\_engine/step][recipe_engine/recipe_modules/step]
116
117
118— **def [RunSteps](/infra/recipes/build_chromeos_hatch.py#17)(api):**
119### *recipes* / [build\_docs](/infra/recipes/build_docs.py)
120
121[DEPS](/infra/recipes/build_docs.py#7): [crosvm](#recipe_modules-crosvm), [depot\_tools/gsutil][depot_tools/recipe_modules/gsutil], [recipe\_engine/buildbucket][recipe_engine/recipe_modules/buildbucket], [recipe\_engine/context][recipe_engine/recipe_modules/context], [recipe\_engine/file][recipe_engine/recipe_modules/file], [recipe\_engine/step][recipe_engine/recipe_modules/step]
122
123
124— **def [RunSteps](/infra/recipes/build_docs.py#20)(api):**
125
126Builds crosvm mdbook and api docs, then uploads them to GCS.
127
128This recipe requires ambient luci authentication. To test locally run:
129 $ luci-auth context ./infra/recipes.py run build_docs
130### *recipes* / [build\_linux](/infra/recipes/build_linux.py)
131
132[DEPS](/infra/recipes/build_linux.py#11): [crosvm](#recipe_modules-crosvm), [recipe\_engine/buildbucket][recipe_engine/recipe_modules/buildbucket], [recipe\_engine/context][recipe_engine/recipe_modules/context], [recipe\_engine/json][recipe_engine/recipe_modules/json], [recipe\_engine/properties][recipe_engine/recipe_modules/properties], [recipe\_engine/raw\_io][recipe_engine/recipe_modules/raw_io], [recipe\_engine/step][recipe_engine/recipe_modules/step]
133
134
135— **def [RunSteps](/infra/recipes/build_linux.py#74)(api, properties):**
136
137— **def [collect\_binary\_sizes](/infra/recipes/build_linux.py#24)(api, properties):**
138### *recipes* / [build\_windows](/infra/recipes/build_windows.py)
139
140[DEPS](/infra/recipes/build_windows.py#7): [crosvm](#recipe_modules-crosvm), [recipe\_engine/buildbucket][recipe_engine/recipe_modules/buildbucket], [recipe\_engine/context][recipe_engine/recipe_modules/context], [recipe\_engine/properties][recipe_engine/recipe_modules/properties], [recipe\_engine/step][recipe_engine/recipe_modules/step]
141
142
143— **def [RunSteps](/infra/recipes/build_windows.py#16)(api):**
144### *recipes* / [crosvm:examples/container\_build\_context](/infra/recipe_modules/crosvm/examples/container_build_context.py)
145
146[DEPS](/infra/recipe_modules/crosvm/examples/container_build_context.py#7): [crosvm](#recipe_modules-crosvm)
147
148
149— **def [RunSteps](/infra/recipe_modules/crosvm/examples/container_build_context.py#12)(api):**
150### *recipes* / [crosvm:examples/cros\_container\_build\_context](/infra/recipe_modules/crosvm/examples/cros_container_build_context.py)
151
152[DEPS](/infra/recipe_modules/crosvm/examples/cros_container_build_context.py#7): [crosvm](#recipe_modules-crosvm)
153
154
155— **def [RunSteps](/infra/recipe_modules/crosvm/examples/cros_container_build_context.py#12)(api):**
156### *recipes* / [crosvm:examples/host\_build\_context](/infra/recipe_modules/crosvm/examples/host_build_context.py)
157
158[DEPS](/infra/recipe_modules/crosvm/examples/host_build_context.py#7): [crosvm](#recipe_modules-crosvm), [recipe\_engine/platform][recipe_engine/recipe_modules/platform], [recipe\_engine/step][recipe_engine/recipe_modules/step]
159
160
161— **def [RunSteps](/infra/recipe_modules/crosvm/examples/host_build_context.py#14)(api):**
162### *recipes* / [crosvm:examples/source\_context](/infra/recipe_modules/crosvm/examples/source_context.py)
163
164[DEPS](/infra/recipe_modules/crosvm/examples/source_context.py#7): [crosvm](#recipe_modules-crosvm), [recipe\_engine/buildbucket][recipe_engine/recipe_modules/buildbucket]
165
166
167— **def [RunSteps](/infra/recipe_modules/crosvm/examples/source_context.py#13)(api):**
168### *recipes* / [health\_check](/infra/recipes/health_check.py)
169
170[DEPS](/infra/recipes/health_check.py#7): [crosvm](#recipe_modules-crosvm), [recipe\_engine/buildbucket][recipe_engine/recipe_modules/buildbucket], [recipe\_engine/context][recipe_engine/recipe_modules/context], [recipe\_engine/properties][recipe_engine/recipe_modules/properties], [recipe\_engine/raw\_io][recipe_engine/recipe_modules/raw_io], [recipe\_engine/step][recipe_engine/recipe_modules/step]
171
172
173— **def [RunSteps](/infra/recipes/health_check.py#17)(api):**
174### *recipes* / [presubmit](/infra/recipes/presubmit.py)
175
176[DEPS](/infra/recipes/presubmit.py#13): [crosvm](#recipe_modules-crosvm), [recipe\_engine/buildbucket][recipe_engine/recipe_modules/buildbucket], [recipe\_engine/context][recipe_engine/recipe_modules/context], [recipe\_engine/json][recipe_engine/recipe_modules/json], [recipe\_engine/properties][recipe_engine/recipe_modules/properties], [recipe\_engine/raw\_io][recipe_engine/recipe_modules/raw_io], [recipe\_engine/step][recipe_engine/recipe_modules/step]
177
178
179— **def [RunSteps](/infra/recipes/presubmit.py#26)(api, properties):**
180### *recipes* / [push\_to\_github](/infra/recipes/push_to_github.py)
181
182[DEPS](/infra/recipes/push_to_github.py#7): [crosvm](#recipe_modules-crosvm), [recipe\_engine/buildbucket][recipe_engine/recipe_modules/buildbucket], [recipe\_engine/context][recipe_engine/recipe_modules/context], [recipe\_engine/file][recipe_engine/recipe_modules/file], [recipe\_engine/path][recipe_engine/recipe_modules/path], [recipe\_engine/raw\_io][recipe_engine/recipe_modules/raw_io], [recipe\_engine/step][recipe_engine/recipe_modules/step]
183
184
185— **def [RunSteps](/infra/recipes/push_to_github.py#18)(api):**
186### *recipes* / [update\_chromeos\_merges](/infra/recipes/update_chromeos_merges.py)
187
188[DEPS](/infra/recipes/update_chromeos_merges.py#7): [crosvm](#recipe_modules-crosvm), [recipe\_engine/context][recipe_engine/recipe_modules/context], [recipe\_engine/step][recipe_engine/recipe_modules/step]
189
190
191— **def [RunSteps](/infra/recipes/update_chromeos_merges.py#14)(api):**
192
193[depot_tools/recipe_modules/bot_update]: https://chromium.googlesource.com/chromium/tools/depot_tools.git/+/f40ddcd8d51626fb7be3ab3c418b3f3be801623f/recipes/README.recipes.md#recipe_modules-bot_update
194[depot_tools/recipe_modules/depot_tools]: https://chromium.googlesource.com/chromium/tools/depot_tools.git/+/f40ddcd8d51626fb7be3ab3c418b3f3be801623f/recipes/README.recipes.md#recipe_modules-depot_tools
195[depot_tools/recipe_modules/gclient]: https://chromium.googlesource.com/chromium/tools/depot_tools.git/+/f40ddcd8d51626fb7be3ab3c418b3f3be801623f/recipes/README.recipes.md#recipe_modules-gclient
196[depot_tools/recipe_modules/git]: https://chromium.googlesource.com/chromium/tools/depot_tools.git/+/f40ddcd8d51626fb7be3ab3c418b3f3be801623f/recipes/README.recipes.md#recipe_modules-git
197[depot_tools/recipe_modules/gsutil]: https://chromium.googlesource.com/chromium/tools/depot_tools.git/+/f40ddcd8d51626fb7be3ab3c418b3f3be801623f/recipes/README.recipes.md#recipe_modules-gsutil
198[recipe_engine/recipe_modules/buildbucket]: https://chromium.googlesource.com/infra/luci/recipes-py.git/+/b67985a8c735f0c61e1757be3cefd43b5d629696/README.recipes.md#recipe_modules-buildbucket
199[recipe_engine/recipe_modules/cipd]: https://chromium.googlesource.com/infra/luci/recipes-py.git/+/b67985a8c735f0c61e1757be3cefd43b5d629696/README.recipes.md#recipe_modules-cipd
200[recipe_engine/recipe_modules/context]: https://chromium.googlesource.com/infra/luci/recipes-py.git/+/b67985a8c735f0c61e1757be3cefd43b5d629696/README.recipes.md#recipe_modules-context
201[recipe_engine/recipe_modules/file]: https://chromium.googlesource.com/infra/luci/recipes-py.git/+/b67985a8c735f0c61e1757be3cefd43b5d629696/README.recipes.md#recipe_modules-file
202[recipe_engine/recipe_modules/json]: https://chromium.googlesource.com/infra/luci/recipes-py.git/+/b67985a8c735f0c61e1757be3cefd43b5d629696/README.recipes.md#recipe_modules-json
203[recipe_engine/recipe_modules/path]: https://chromium.googlesource.com/infra/luci/recipes-py.git/+/b67985a8c735f0c61e1757be3cefd43b5d629696/README.recipes.md#recipe_modules-path
204[recipe_engine/recipe_modules/platform]: https://chromium.googlesource.com/infra/luci/recipes-py.git/+/b67985a8c735f0c61e1757be3cefd43b5d629696/README.recipes.md#recipe_modules-platform
205[recipe_engine/recipe_modules/properties]: https://chromium.googlesource.com/infra/luci/recipes-py.git/+/b67985a8c735f0c61e1757be3cefd43b5d629696/README.recipes.md#recipe_modules-properties
206[recipe_engine/recipe_modules/raw_io]: https://chromium.googlesource.com/infra/luci/recipes-py.git/+/b67985a8c735f0c61e1757be3cefd43b5d629696/README.recipes.md#recipe_modules-raw_io
207[recipe_engine/recipe_modules/step]: https://chromium.googlesource.com/infra/luci/recipes-py.git/+/b67985a8c735f0c61e1757be3cefd43b5d629696/README.recipes.md#recipe_modules-step
208[recipe_engine/recipe_modules/time]: https://chromium.googlesource.com/infra/luci/recipes-py.git/+/b67985a8c735f0c61e1757be3cefd43b5d629696/README.recipes.md#recipe_modules-time
209[recipe_engine/wkt/RecipeApi]: https://chromium.googlesource.com/infra/luci/recipes-py.git/+/b67985a8c735f0c61e1757be3cefd43b5d629696/recipe_engine/recipe_api.py#433
210