commit | fec8e74513d3eb193a02bd6033bc908884c433dc | [log] [tgz] |
---|---|---|
author | recipe-roller <recipe-deps-roller@pigweed-service-accounts.iam.gserviceaccount.com> | Thu Jul 27 00:02:44 2023 +0000 |
committer | CQ Bot Account <pigweed-scoped@luci-project-accounts.iam.gserviceaccount.com> | Thu Jul 27 00:02:44 2023 +0000 |
tree | 4bd0aa672f40413e1efdb4dd04a59c0c8b52859d | |
parent | 6e3f0ab59ab7d487f072eade0a2e88d984280eaf [diff] |
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/8774470695263338945 fuchsia: https://fuchsia.googlesource.com/infra/recipes/+log/80b37d71ec7d0db2b495fe9b6c3e4e3eb5679092~..df9f1b98291c355552772053a81dbb021ae07e8d 80b37d7 (global-integration-roller@fuchsia-infra.iam.gserviceaccount.com) [roll] Update coverage pinned tools 290d830 (danikay@google.com) [resultdb] enable rdb tool for swarming tasks df9f1b9 (atyfto@google.com) [submodule_update] Stop modifying roll options recipe_engine: https://chromium.googlesource.com/infra/luci/recipes-py/+log/a807da6a881687160a83dec4253809a5b04a4a1a~..18d911a9f62dba888639d9753626e27808c0c264 a807da6 (mohrr@google.com) [lint] Allow 'import fnmatch' 18d911a (mohrr@google.com) [lint] Allow 'import dataclasses' 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: Idd7fa5de8db9bc6e20543f07861f7caec60ebb00 Reviewed-on: https://pigweed-review.googlesource.com/c/infra/recipes/+/159816 Commit-Queue: Auto-Submit <auto-submit@pigweed-service-accounts.iam.gserviceaccount.com> Bot-Commit: Recipe Deps Roller <recipe-deps-roller@pigweed-service-accounts.iam.gserviceaccount.com> Pigweed-Auto-Submit: Rob Mohr <mohrr@google.com>
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.
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
./presubmit.sh
runs three different sets of tests:
./recipes.py test train
)./black --diff --check .
).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.