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

fuchsia:
https://fuchsia.googlesource.com/infra/recipes/+log/da69a9f38a168d0013d3541ad8058bd3ea8ee1e3~..6b29e2bbbaad8db872b2a918b978a39684eb9cc4
  da69a9f (global-integration-roller@fuchsia-infra.iam.gserviceaccount.com)
      [roll] Update coverage pinned tools
  cbc4ffe (global-integration-roller@fuchsia-infra.iam.gserviceaccount.com)
      [roll] Update pinned tools
  996acbe (olivernewman@google.com)
      [fwdr] jiri update after updating manifests
  8fcf61c (olivernewman@google.com)
      [fwdr] Update lockfiles before running `jiri update`
  e0bd22a (dthorn@google.com)
      [clang] Add ncurses to LLDB build
  9de69d7 (olivernewman@google.com)
      [kythe] Convert to proto properties
  767d89b (olivernewman@google.com)
      [tensorflow] Convert to proto properties
  ae2b09b (olivernewman@google.com)
      [go_toolchain] Convert to proto properties
  31db905 (olivernewman@google.com)
      [gerrit_auto_submit] Convert to proto properties
  eda7b21 (andresvi@google.com)
      [build] Add fx repro msg to summary markdown
  c6f22b7 (dthorn@google.com)
      [clang] Add libedit to LLDB build
  9400594 (atyfto@google.com)
      [release/auto_submit] Fix "target_remote" property construction
  e9109ba (josephry@google.com)
      [cargo_build] Only build requested binary
  60ac563 (global-integration-roller@fuchsia-infra.iam.gserviceaccount.com)
      [roll] Update coverage pinned tools
  213563d (global-integration-roller@fuchsia-infra.iam.gserviceaccount.com)
      [roll] Update pinned tools
  368a683 (global-integration-roller@fuchsia-infra.iam.gserviceaccount.com)
      [roll] Update pinned tools
  e772a41 (olivernewman@google.com)
      [crashpad_roller] Convert to proto properties
  46058d7 (olivernewman@google.com)
      [llvm] Convert to proto properties
  b9bddb1 (olivernewman@google.com)
      [salt_packer] Convert to proto properties
  00f306a (olivernewman@google.com)
      [vulkan_sdk] Convert to proto properties
  6b29e2b (olivernewman@google.com)
      [firebase_docs] Convert to proto properties

recipe_engine:
https://chromium.googlesource.com/infra/luci/recipes-py/+log/75b9406263af4b729ea0daa4a91285295469081d~..3b628ec844f89142ba637f08e964561505a9f9a4
  75b9406 (iannucci@chromium.org)
      [debug] Add better pdb and remote debugging support.
  3b628ec (iannucci@chromium.org)
      [json] Add ability to dump json with unsorted keys.

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: I656d39443fae7507ea75303dd3beecd26dae59f8
Reviewed-on: https://pigweed-review.googlesource.com/c/infra/recipes/+/152671
Bot-Commit: Recipe Deps Roller <recipe-deps-roller@pigweed-service-accounts.iam.gserviceaccount.com>
Commit-Queue: Auto-Submit <auto-submit@pigweed.google.com.iam.gserviceaccount.com>
Pigweed-Auto-Submit: Rob Mohr <mohrr@google.com>
2 files changed
tree: 7877bd32b6828deb4bf371bc71a45d6cc9ccd3cc
  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.