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/8776846950943073873

fuchsia:
https://fuchsia.googlesource.com/infra/recipes/+log/948e9ccea551c7f270a90c10ceeaf71be0059133~..156960b2d0c8b8e228d7dffa14dfe84a7d9a6cc5
  948e9cc (global-integration-roller@fuchsia-infra.iam.gserviceaccount.com)
      [roll] Update pinned tools
  8ae1a10 (global-integration-roller@fuchsia-infra.iam.gserviceaccount.com)
      [roll] Update pinned tools
  44b7650 (global-integration-roller@fuchsia-infra.iam.gserviceaccount.com)
      [roll] Update pinned tools
  1c9e0a5 (tmandry@google.com)
      [rust_toolchain] Trigger canary builds sooner
  30479ea (global-integration-roller@fuchsia-infra.iam.gserviceaccount.com)
      [roll] Update coverage pinned tools
  3aba0d5 (global-integration-roller@fuchsia-infra.iam.gserviceaccount.com)
      [roll] Update pinned tools
  0e9fc0b (olivernewman@google.com)
      [shac] Run checks on all files
  93f6a85 (mohrr@google.com)
      [builder_status] Initial commit
  1a57367 (olivernewman@google.com)
      [shac] Fix off-by-one error in finding columns
  8aa4534 (global-integration-roller@fuchsia-infra.iam.gserviceaccount.com)
      [roll] Update pinned tools
  344bc41 (mohrr@google.com)
      [builder_status] Reduce request fields
  f5864d9 (global-integration-roller@fuchsia-infra.iam.gserviceaccount.com)
      [roll] Update pinned tools
  c78e5f0 (global-integration-roller@fuchsia-infra.iam.gserviceaccount.com)
      [roll] Update pinned tools
  db79609 (global-integration-roller@fuchsia-infra.iam.gserviceaccount.com)
      [roll] Update coverage pinned tools
  156960b (global-integration-roller@fuchsia-infra.iam.gserviceaccount.com)
      [roll] Update pinned tools

recipe_engine:
https://chromium.googlesource.com/infra/luci/recipes-py/+log/1d8a893def43966f3b0518a164fbf64b7995ac02~..84baae1fe070d4c73fe8d8acf936040db5b80979
  1d8a893 (chromium-autoroll@skia-public.iam.gserviceaccount.com)
      Roll CAS Client from 6a00db20e1b8 to 04c87667ea97
  091c008 (iannucci@chromium.org)
      [engine] Replace custom cached_property with functools one.
  fc101e3 (jeffyoon@google.com)
      Update proto definitions
  5fa3141 (iannucci@chromium.org)
      [dev] Rework python3 symlink to full multi-virtualenv support.
  3c67e15 (iannucci@chromium.org)
      [python.result_step] Remove deprecated methods and warnings.
  45a6e07 (chromium-autoroll@skia-public.iam.gserviceaccount.com)
      Roll CAS Client from c3d4585b0902 to 15be1e7f953c
  16ed44b (iannucci@chromium.org)
      Update generator_script module.
  84baae1 (iannucci@chromium.org)
      [python.inline] Remove deprecated method and warning.

Please check the following references for more information:
- autoroller, https://chromium.googlesource.com/infra/luci/recipes-py/+/main/doc/workflow.md#autoroller
- rollback, https://chromium.googlesource.com/infra/luci/recipes-py/+/main/doc/workflow.md#rollback
- cross-repo dependencies, https://chromium.googlesource.com/infra/luci/recipes-py/+/main/doc/cross_repo.md

Use https://goo.gl/noib3a to file a bug.

Recipe-Tryjob-Bypass-Reason: Autoroller
Ignore-Freeze: Autoroller
Bugdroid-Send-Email: False
Change-Id: I92b5d9dba899ec4ae793a2654425140eba1a6621
Reviewed-on: https://pigweed-review.googlesource.com/c/infra/recipes/+/153875
Bot-Commit: Recipe Deps Roller <recipe-deps-roller@pigweed-service-accounts.iam.gserviceaccount.com>
1 file changed
tree: 566cc4bcea6a010c267ec5177dd5d465e3cd0480
  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.