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

depot_tools:
https://chromium.googlesource.com/chromium/tools/depot_tools.git/+log/02091c61485a5e960f2eb84c6b12c26faa67b353~..441cd5c465c10ff0d322be60e3fb92cb18e60fe6
  02091c6 (iannucci@chromium.org)
      [gerrit_util] Add opt-in SSOAuthenticator.
  413b558 (yiwzhang@google.com)
      remove weekly and wtf commands
  165fdee (ayatane@chromium.org)
      [cipd] Add git-credential-luci
  f871d80 (iannucci@chromium.org)
      [gerrit_util] Add dogfoodable luci-auth Authenticator.
  fd85601 (bpastene@chromium.org)
      git_cl: Remove support for '--clobber' arg
  441cd5c (ayatane@chromium.org)
      Revert "[cipd] Add git-credential-luci"

infra:
https://chromium.googlesource.com/infra/infra.git/+log/b1d87747941f2d8756de8ea7d5bd4e592af52c1e~..a377d25016fa3144fdd5cba2b090f5b875fb67f8
  b1d8774 (cdelagarza@google.com)
      container_uprev: redefine record in firestore
  d2481a1 (chromium-autoroll@skia-public.iam.gserviceaccount.com)
      Roll chromiumos/infra/proto from 4e8987421cbf to 6ea639224f6a (...
  2def223 (images-pins-roller@chops-service-accounts.iam.gserviceaccount.com)
      [images] Roll pinned docker image tags.
  ceef17a (chromium-autoroll@skia-public.iam.gserviceaccount.com)
      Roll chromiumos/config from 007d51f77ad2 to 4c5b2e2ce503 (1 rev...
  a43de4f (chromium-autoroll@skia-public.iam.gserviceaccount.com)
      Roll chromiumos/infra/proto from 6ea639224f6a to 30f871a934d6 (...
  d41024b (yiwzhang@google.com)
      codesearch: define new chromeos config
  dd4cfbb (jstanko@google.com)
      ufs: Add exporting_adapter for cellular_connection_state
  106b705 (dbeckett@google.com)
      CTPv2: Uprev provision filter for dynamic updates
  86dcf25 (varunsrivastav@google.com)
      Resolve race condition for removing authToken.txt
  feaa989 (chromium-autoroll@skia-public.iam.gserviceaccount.com)
      Roll luci-go from f4f99260c97e to a0ad2ca587d6 (2 revisions)
  8a8c633 (vadimsh@chromium.org)
      Revert "Roll recipe dependencies (trivial)."
  9c1825f (varunsrivastav@google.com)
      Fix code comment
  3d64fec (chromium-autoroll@skia-public.iam.gserviceaccount.com)
      Roll luci-py from fd028e118f07 to af6b3d6a370f (1 revision)
  6a5329c (chromium-autoroll@skia-public.iam.gserviceaccount.com)
      Roll luci-go from a0ad2ca587d6 to a57565acc4f5 (1 revision)
  3cd65d0 (chromium-autoroll@skia-public.iam.gserviceaccount.com)
      Roll luci-py from af6b3d6a370f to 5cd3ef999b1a (1 revision)
  1840376 (chromium-autoroll@skia-public.iam.gserviceaccount.com)
      Roll chromiumos/config from 4c5b2e2ce503 to 3fe54082ac77 (1 rev...
  3c98968 (chromium-autoroll@skia-public.iam.gserviceaccount.com)
      Roll luci-go from a57565acc4f5 to 46dc334b7065 (1 revision)
  de0a491 (fancl@chromium.org)
      pkgbuild: only upload packages for target platform
  61e5676 (bsheedy@chromium.org)
      Add db-dtypes wheel
  acd5b3d (chromium-autoroll@skia-public.iam.gserviceaccount.com)
      Roll luci-go from 46dc334b7065 to 08901698af19 (1 revision)
  a377d25 (chromium-autoroll@skia-public.iam.gserviceaccount.com)
      Roll chromiumos/config from 3fe54082ac77 to 4158785d3a64 (1 rev...

recipe_engine:
https://chromium.googlesource.com/infra/luci/recipes-py.git/+/e0c5ee511517151767e1eb5d2eb3d085bacb16af
  e0c5ee5 (bpastene@chromium.org)
      Rename path module's cleanup dir from 'recipe_cleanup' to 'rc'

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: I8d09a8c8280974055288adead1842fe935f4cb4e
2 files changed
tree: 724240ef64ab0403bc82e8e1bbbd8eb4abbf3c0c
  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