Roll recipe dependencies (trivial).

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

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

depot_tools:
https://chromium.googlesource.com/chromium/tools/depot_tools.git/+/ebee31c0db548670e33da5338a79691950d8ca5a
  ebee31c (sokcevic@chromium.org)
      [gclient] Short-circut ParseDepsFile if not found

infra:
https://chromium.googlesource.com/infra/infra.git/+log/7f84341556b2c05fe4b291a4e35c81c7440c8ed4~..ce2864c99ff1d3675bb8ca1bfe949431541e8d37
  7f84341 (iannucci@chromium.org)
      [recipes.cfg] Update engine to version with luciexe.bat revert.
  fc59014 (chromium-autoroll@skia-public.iam.gserviceaccount.com)
      Roll chromiumos/config from 5884462e669b to 4591475a3f2a (2 rev...
  0c9d46b (chromium-autoroll@skia-public.iam.gserviceaccount.com)
      Roll luci-go from 96b6dcb050ac to caf3dcddca9e (1 revision)
  62f6f5d (chromium-autoroll@skia-public.iam.gserviceaccount.com)
      Roll chromiumos/infra/proto from b713a162350b to 38bf493a5277 (...
  a987bf9 (zhihuixie@google.com)
      result_adapter: upload test_harness for both TRv1 and TRv2
  59c8962 (chromium-autoroll@skia-public.iam.gserviceaccount.com)
      Roll luci-go from caf3dcddca9e to da267757c145 (1 revision)
  5b13336 (ukai@google.com)
      siso: run fastDepsCmd in scanDepsSema
  d76d451 (images-pins-roller@chops-service-accounts.iam.gserviceaccount.com)
      [images] Roll pinned docker image tags.
  ce2864c (chromium-autoroll@skia-public.iam.gserviceaccount.com)
      Roll luci-go from da267757c145 to 1c7e1595bd16 (1 revision)

recipe_engine:
https://chromium.googlesource.com/infra/luci/recipes-py.git/+/42e0c97c4954dfedc6ab26b64646cfd742ac340f
  42e0c97 (iannucci@chromium.org)
      Revert "Remove a bit of sys.path hackery."

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: I74bc9fb2da8abfe65be40305edc8fa63c42dd366
2 files changed
tree: 5b2a508b5c7daff0ec3d8b5410e68fc3eb5571a0
  1. generated/
  2. infra/
  3. recipes/
  4. repos/
  5. .gitignore
  6. main.star
  7. README.md
README.md

LUCI Configuration

This repo holds all the configuration for LUCI, the CI system Gerrit uses. You can find recent verification runs and logs at https://ci.chromium.org/ui/p/gerrit/builders.

Concepts

  • Recipe: a python script to verify a change, and a test for that verification
  • Builder: a recipe configured to run on a specific machine type
  • CQ Group: a watcher that triggers on new votes/patchsets on the specified repo+refs
  • CQ Tryjob Verifier: combines a CQ group with a builder to run a recipe when a new vote or patchset comes in

Layout

  • /main.star: overall starlark configuration for the entire host. It is also executable to generate the config data
  • /repos/*.star: repo-specific starlark configuration for builders, CQ groups, CQ tryjob verifiers, etc
  • /recipes/recipes/*.py: recipes for testing a change based on the repo
  • /recipes/recipes.py: executes recipe tests and compares/generates expected JSON goldens. 100% coverage is expected.
  • /recipes/recipe_modules/: dependencies shared by modules
  • /recipes/*.expected/*.json: expected commands executed by the recipe
  • /infra/config/recipes.cfg: versions and URLs of external recipe dependencies

Prerequisites

  • lucicfg - CLI tool to generate the configuration from the starlark scripts. To install, clone depot_tools.
  • python - Python 3, used to execute recipes.

Imporant commands

Regenerate config data after making changes (lucicfg):

$ ./main.star

Run recipe tests (python):

$ recipes/recipes.py test run

Update recipe test goldens (python):

$ recipes/recipes.py test train

Documentation