commit | 32560ddd7db093bbef5b78a72e876d495db4dc8f | [log] [tgz] |
---|---|---|
author | chromium-autoroll <chromium-autoroll@skia-public.iam.gserviceaccount.com> | Tue Jul 27 17:26:16 2021 |
committer | LUCI CQ <infra-scoped@luci-project-accounts.iam.gserviceaccount.com> | Tue Jul 27 17:26:16 2021 |
tree | 186e2b397356aea23f6a607a89d2adb82fddd8b8 | |
parent | 14aeb4fc9d57d144be6ba3cc8b6b948fa5d74e6e [diff] |
Roll CAS Client from 4d27bf4863b7 to 5849a0d29a3f https://chromium.googlesource.com/infra/infra.git/+log/4d27bf4863b7..5849a0d29a3f 2021-07-27 bryner@google.com Also disable flex on Mac. 2021-07-27 chromium-autoroll@skia-public.iam.gserviceaccount.com Roll chromiumos/config from 65ab5cc21e71 to 975d599f1bf4 (2 revisions) 2021-07-27 gbeaty@chromium.org Split the Bootstrapper type into multiple types. 2021-07-27 chromium-autoroll@skia-public.iam.gserviceaccount.com Roll chromiumos/config from 835696a76fb5 to 65ab5cc21e71 (2 revisions) 2021-07-27 jackneus@google.com Switch setup_project to use its own OAuth ClientID 2021-07-27 chromium-autoroll@skia-public.iam.gserviceaccount.com Roll luci-go from e742cf6d8d11 to cd4ffe738430 (1 revision) 2021-07-27 chromium-autoroll@skia-public.iam.gserviceaccount.com Roll luci-go from 5c209a11c4a4 to e742cf6d8d11 (1 revision) 2021-07-27 chromium-autoroll@skia-public.iam.gserviceaccount.com Roll luci-go from 977fe46b68ee to 5c209a11c4a4 (1 revision) 2021-07-27 chromium-autoroll@skia-public.iam.gserviceaccount.com Roll luci-go from f7ee62f1a958 to 977fe46b68ee (1 revision) If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://autoroll.skia.org/r/cas-recipes-py Please CC tikuta@chromium.org,jwata@google.com on the revert to ensure that a human is aware of the problem. To report a problem with the AutoRoller itself, please file a bug: https://bugs.chromium.org/p/skia/issues/entry?template=Autoroller+Bug Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+doc/main/autoroll/README.md Tbr: tikuta@chromium.org,jwata@google.com Change-Id: I2c4b3f0e0ceecef8c00d2e2145e68c787127bc15 Reviewed-on: https://chromium-review.googlesource.com/c/infra/luci/recipes-py/+/3055168 Commit-Queue: chromium-autoroll <chromium-autoroll@skia-public.iam.gserviceaccount.com> Bot-Commit: chromium-autoroll <chromium-autoroll@skia-public.iam.gserviceaccount.com>
Recipes are a domain-specific language (embedded in Python) for specifying sequences of subprocess calls in a cross-platform and testable way.
They allow writing build flows which integrate with the rest of LUCI.
Documentation for the recipe engine (including this file!). Take a look at the user guide for some hints on how to get started. See the implementation details doc for more detailed implementation information about the recipe engine.
user.email
and user.name
are configured in git config
.Run the following to setup the code review tool and create your first review:
# Get `depot_tools` in $PATH if you don't have it git clone https://chromium.googlesource.com/chromium/tools/depot_tools.git $HOME/src/depot_tools export PATH="$PATH:$HOME/src/depot_tools" # Check out the recipe engine repo git clone https://chromium.googlesource.com/infra/luci/recipes-py $HOME/src/recipes-py # make your change cd $HOME/src/recipes-py git new-branch cool_feature # hack hack git commit -a -m "This is awesome" # This will ask for your Google Account credentials. git cl upload -s -r joe@example.com # Wait for approval over email. # Click "Submit to CQ" button or ask reviewer to do it for you. # Wait for the change to be tested and landed automatically.
Use git cl help
and git cl help <cmd>
for more details.