commit | 31b22209b74427f3f66d7f6032fa6444364e37f2 | [log] [tgz] |
---|---|---|
author | Yiwei Zhang <yiwzhang@google.com> | Wed Nov 23 03:29:04 2022 |
committer | LUCI CQ <infra-scoped@luci-project-accounts.iam.gserviceaccount.com> | Wed Nov 23 03:29:04 2022 |
tree | bac5da86ee8f4f1c430026100ab3d8e40a747f6c | |
parent | dd7ae28ebcf4bc620947e882b731a0543a7ae8cf [diff] |
cv: ensure the provided options to control tryjob behavior are valid Also, remove the restriction that No-Try can't be specified together with Cq-Include-Trybots or Override-Tryjobs-For-Automation because a revert CL will keep the footers from the orignal CL and append No-Try footer. Example: https://crrev.com/c/3764789. In that case, No-Try will take precedence. R=robertocn Bug: 1367873 Change-Id: I1e5c606d9291f5187331cba1fef87363a5b0d46e Reviewed-on: https://chromium-review.googlesource.com/c/infra/luci/luci-go/+/4045847 Reviewed-by: Roberto Carrillo <robertocn@google.com> Commit-Queue: Yiwei Zhang <yiwzhang@google.com>
LUCI Go code is meant to be worked on from an Chromium infra.git checkout, which enforces packages versions and Go toolchain version. First get fetch via depot_tools.git then run:
fetch infra cd infra/go eval `./env.py` cd src/go.chromium.org/luci
It is now possible to directly install tools with go install:
go install go.chromium.org/luci/auth/client/cmd/...@latest go install go.chromium.org/luci/buildbucket/cmd/...@latest go install go.chromium.org/luci/cipd/client/cmd/...@latest go install go.chromium.org/luci/client/cmd/...@latest go install go.chromium.org/luci/cv/cmd/...@latest go install go.chromium.org/luci/gce/cmd/...@latest go install go.chromium.org/luci/grpc/cmd/...@latest go install go.chromium.org/luci/logdog/client/cmd/...@latest go install go.chromium.org/luci/luci_notify/cmd/...@latest go install go.chromium.org/luci/lucicfg/cmd/...@latest go install go.chromium.org/luci/luciexe/legacy/cmd/...@latest go install go.chromium.org/luci/mailer/cmd/...@latest go install go.chromium.org/luci/mmutex/cmd/...@latest go install go.chromium.org/luci/resultdb/cmd/...@latest go install go.chromium.org/luci/server/cmd/...@latest go install go.chromium.org/luci/swarming/cmd/...@latest go install go.chromium.org/luci/tokenserver/cmd/...@latest go install go.chromium.org/luci/tools/cmd/...@latest
Contributing uses the same flow as Chromium contributions.