Roll recipe dependencies (trivial).

This is an automated CL created by the recipe roller. This CL rolls
recipe changes from upstream projects (fuchsia, recipe_engine) into this repository.

The build that created this CL was
https://ci.chromium.org/b/8811149721642177473

fuchsia:
https://fuchsia.googlesource.com/infra/recipes/+log/9fccb4b874286f7b664506b22ba1c75ca65c028e~..292ff45b2f9578b713ca6de26a3a2c7abb642335
  9fccb4b (global-integration-roller@fuchsia-infra.iam.gserviceaccount.com)
      [roll] Update tools to latest
  d024338 (atyfto@google.com)
      [presubmit_util] Simplify package overrides schema
  ced9bd4 (olivernewman@google.com)
      [rbe] Update log.proto
  3e1463e (joshuaseaton@google.com)
      [ovmf] Delete ovmf recipe
  e81cb34 (rudymathu@google.com)
      [recipes] Capture download manifest from botanist
  184b02f (olivernewman@google.com)
      [rbe] Use logdump from the checkout
  966e1c1 (rudymathu@google.com)
      [recipes] Fix blob download manifest path
  9a7d378 (olivernewman@google.com)
      [cas_util] Enable debug logs on uploads
  3517bed (global-integration-roller@fuchsia-infra.iam.gserviceaccount.com)
      [roll] Update tools to latest
  e13ac58 (atyfto@google.com)
      [checkout] Allow package_overrides.json
  c0053c8 (joshuaseaton@google.com)
      [OWNERS] Grant QEMU recipe ownership
  0217457 (joshuaseaton@google.com)
      [qemu] Enable TPM
  6cb6541 (global-integration-roller@fuchsia-infra.iam.gserviceaccount.com)
      [roll] Update tools to latest
  a9b6780 (global-integration-roller@fuchsia-infra.iam.gserviceaccount.com)
      [roll] Update tools to latest
  44ec809 (olivernewman@google.com)
      [testsharder] Allow Multiply count immediately after colon
  9ef62df (liyl@google.com)
      [recipe] Update aemu download path
  f2f58ea (fangism@google.com)
      [fint][rbe] Rename proto field -> rust_rbe_enable
  0a7c2e7 (olivernewman@google.com)
      [owners] Add copybara service account
  5097dad (global-integration-roller@fuchsia-infra.iam.gserviceaccount.com)
      [roll] Update tools to latest
  bdfb420 (nmulcahey@google.com)
      [qemu] Fix build and enable LTO
  7ab0faf (global-integration-roller@fuchsia-infra.iam.gserviceaccount.com)
      [roll] Update tools to latest
  396fb3f (fangism@google.com)
      [fint][rbe] Revert to single RBE parameter
  eb19618 (atyfto@google.com)
      [sdk] Set Chromium gclient variable for SDK override
  509728f (joshuaseaton@google.com)
      [edk2] Enable IPv6
  292ff45 (olivernewman@google.com)
      [sdk] Add companion image CAS digests to package overrides

recipe_engine:
https://chromium.googlesource.com/infra/luci/recipes-py/+log/57e0012cfe9b6fdc0af51b0ebcb269323bc3b071~..bc859d1d57e1ea55fcb98b3c887bf301c5aaa9ca
  57e0012 (olivernewman@google.com)
      [cas] Add log_level arg to archive()
  bc859d1 (chromium-autoroll@skia-public.iam.gserviceaccount.com)
      Roll CAS Client from e5e97e5390db to df39938896c4

More info is at https://goo.gl/zkKdpD. Use https://goo.gl/noib3a to file a bug.

Recipe-Tryjob-Bypass-Reason: Autoroller
Ignore-Freeze: Autoroller
Bugdroid-Send-Email: False
Change-Id: I2ae5fa06f37b11f553b7c2f1fa2aac6e97d54628
Reviewed-on: https://pigweed-review.googlesource.com/c/infra/recipes/+/98550
Commit-Queue: Recipe Deps Roller <recipe-deps-roller@pigweed.google.com.iam.gserviceaccount.com>
Bot-Commit: Recipe Deps Roller <recipe-deps-roller@pigweed.google.com.iam.gserviceaccount.com>
1 file changed
tree: b863bf3e61c7dc1efba115a580fe407ed0f24770
  1. infra/
  2. recipe_modules/
  3. recipes/
  4. scripts/
  5. .gitignore
  6. .style.yapf
  7. AUTHORS
  8. cipd.ensure
  9. LICENSE
  10. OWNERS
  11. presubmit.sh
  12. pyproject.toml
  13. README.md
  14. recipes.py
README.md

Pigweed Recipes

This repository contains recipes for Pigweed.

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 Pigweed and downstream projects using Pigweed 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 Pigweed in your local environment.

See go/pigweed-recipe-docs for complete documentation and a guide for getting started with writing recipes.

Getting the Code

The recommended way to get the source code is with git.

git clone https://pigweed.googlesource.com/infra/recipes

In most cases you will need a Chromium depot_tools checkout in your PATH as well.

git clone https://chromium.googlesource.com/chromium/tools/depot_tools ~/depot_tools
echo 'export PATH="$PATH:$HOME/depot_tools"' >> ~/.bashrc

Running Tests

./presubmit.sh runs three different sets of tests:

  • Recipe expectation tests (./recipes.py test train)
  • Formatting (./black --diff --check .)
  • Dependencies (.recipe_deps/fuchsia/scripts/cleanup_deps.py --check)

The formatting check will tell you what‘s wrong but not fix it. For that you need to run ./black .. Similarly, the dependencies check will tell you what’s wrong but you'll need to edit the files to fix issues.

If not using ./presubmit.sh you'll need to run ./scripts/ensure_black.sh before ./black is present.