commit | 6e79d3e9d3b185a31cb4720498b13677f73378a6 | [log] [tgz] |
---|---|---|
author | Joshua Seaton <joshuaseaton@google.com> | Wed Jun 05 22:49:38 2019 |
committer | Commit Bot <commit-bot@chromium.org> | Wed Jun 05 22:49:38 2019 |
tree | 420390037b5e92094542469536df671e4ead8cf0 | |
parent | 5e72c468299a968684d6d458536719dc41085faf [diff] |
Revert "[isolated] Roll client" This reverts commit 7bd3deb9c112801932856d8f18edddd62dffa9cf. Reason for revert: There is no mac upload with a tag of git_revision:82f395186c5d0d93f1326c1e57be8aec84812029 Original change's description: > [isolated] Roll client > > Roll to https://chrome-infra-packages.appspot.com/p/infra/tools/luci/isolated/linux-amd64/+/_PrY0SRZoIbOokrEIQCceU6iUdIwaqJyq7AwxJ3fUyEChttps://chrome-infra-packages.appspot.com/p/infra/tools/luci/isolated/linux-amd64/+/_PrY0SRZoIbOokrEIQCceU6iUdIwaqJyq7AwxJ3fUyEC > to pick up > https://chromium-review.googlesource.com/c/infra/luci/luci-go/+/1639257 > > Change-Id: I165fa574cda4684ba1af32f724d8e87bf48c34e4 > Reviewed-on: https://chromium-review.googlesource.com/c/infra/luci/recipes-py/+/1644063 > Auto-Submit: Joshua Seaton <joshuaseaton@google.com> > Commit-Queue: Marc-Antoine Ruel <maruel@chromium.org> > Reviewed-by: Marc-Antoine Ruel <maruel@chromium.org> TBR=maruel@chromium.org,tikuta@chromium.org,joshuaseaton@google.com Change-Id: I225edb2d9f46ac7aceaf4bc70ff2baa3cb556ef2 No-Presubmit: true No-Tree-Checks: true No-Try: true Reviewed-on: https://chromium-review.googlesource.com/c/infra/luci/recipes-py/+/1646657 Reviewed-by: Joshua Seaton <joshuaseaton@google.com> Commit-Queue: Joshua Seaton <joshuaseaton@google.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.