| commit | afaaf195902af8d7a94f31bd6c18ff9d04d25c7c | [log] [tgz] |
|---|---|---|
| author | Haowei Wu <haowei@google.com> | Mon Aug 04 11:15:09 2025 -0700 |
| committer | CQ Bot <fuchsia-internal-scoped@luci-project-accounts.iam.gserviceaccount.com> | Mon Aug 04 11:15:09 2025 -0700 |
| tree | 3e14fdee30d8d26d5b7277b36f62925683868880 | |
| parent | 33c609efbb56fbc3074e9f5a42abe8e67a0e2c57 [diff] |
Revert "[cipd_tagger] Add package_map option" This reverts commit 33c609efbb56fbc3074e9f5a42abe8e67a0e2c57. Reason for revert: May caused infra failures. Original change's description: > [cipd_tagger] Add package_map option > > Rust toolchain has "fuchsia/third_party/rust/host" and > related "fuchsia/third_party/rust/target" packages. They share the > save version. However, not all the "target" packages are specified > in the fuchsia manifest, which means those package will not be tagged > by the tagger. This patch introduce the "package_map" option so > they can be tagged correctly. This allow non-fuchsia builders can > use these packages directly without reading Fuchsia's manifest. > > Change-Id: I78a08b382f88f4a470bb83ebb2cc3240a30bf657 > Reviewed-on: https://fuchsia-review.googlesource.com/c/infra/recipes/+/1335109 > Reviewed-by: Rob Mohr <mohrr@google.com> > Commit-Queue: Haowei Wu <haowei@google.com> No-Presubmit: true No-Tree-Checks: true No-Try: true Change-Id: I8de8ffcf843e0585f569623631e802bc5d2e641e Reviewed-on: https://fuchsia-review.googlesource.com/c/infra/recipes/+/1338007 Reviewed-by: Rob Mohr <mohrr@google.com> Commit-Queue: Haowei Wu <haowei@google.com> Commit-Queue: Rob Mohr <mohrr@google.com> Reviewed-by: RubberStamper 🤖 <android-build-ayeaye@system.gserviceaccount.com>
This repository contains recipes for Fuchsia.
A recipe is a Python script that runs a series of commands, using the recipe engine framework from the LUCI project. We use recipes to automatically check out, build, and test Fuchsia in continuous integration jobs. The commands the recipes use are very similar to the ones you would use as a developer to check out, build, and test Fuchsia in your local environment.
See go/fuchsia-recipe-docs for complete documentation and a guide for getting started with writing recipes.
The recommended way to get the source code is with jiri. A recipe will not run without vpython and cipd, and using these recommended jiri manifests will ensure that you have these tools.
You can use the fuchsia infra Jiri manifest or the internal version (Googlers-only). Once that manifest is imported in your local jiri manifest, jiri update should download vpython and cipd into <JIRI ROOT>/fuchsia-infra/prebuilt/tools/. If you add that directory to your PATH, you should be good to go.
If you're just trying to make a single small change to in this repository and already have your local environment set up for recipe development (e.g. because you work with another recipes repository) you can simply clone this repository with git:
git clone https://fuchsia.googlesource.com/infra/recipes
Then it will be up to you to ensure that vpython and cipd are available in your PATH.
We format python code using Black, an open-source Python autoformatter. It should be in your PATH if you followed the instructions for setting up your environment.
After committing recipe changes, you can format the files in your commit by running black . in your project root.
Many editors also have a setting to run Black automatically whenever you save a Python file (or on a keyboard shortcut). For VS Code, add the following to your workspace settings.json to make your editor compatible with Black and turn on auto-formatting on save:
{ "python.formatting.provider": "black", "python.formatting.blackPath": "<absolute path to the black executable>", "[python]": { "editor.formatOnSave": true, "editor.rulers": [88], // Black enforces a line length of 88 characters. }, ... }