commit | f84b17fa60bf3992ca97edfada4d402439e619d9 | [log] [tgz] |
---|---|---|
author | Oliver Newman <olivernewman@google.com> | Thu Feb 20 23:29:48 2025 |
committer | LUCI CQ <infra-scoped@luci-project-accounts.iam.gserviceaccount.com> | Thu Feb 20 23:29:48 2025 |
tree | 197a241b2311c62b95cf6ab91223a489b0b0ff98 | |
parent | 48202181b561930700828eba5c18b03cb1dfcdbf [diff] |
[lucicfg] Add support for disable_reuse_footers For any commit message footers listed in the `disable_reuse_footers` parameter to `luci.cq_tryjob_verifier()`, CV now checks the footer value in the previous and current patchset when determining whether to reuse a previous tryjob. If the value of any of the listed footers has changed, or if any of the footers have been added/removed, then CV will not reuse the previous tryjob even if the patchsets are otherwise equivalent. Bug: 40785878 Bug: 377534181 Change-Id: I0dd1104a3450fbfa2856cbf3f4ae2033bd7a8bca Reviewed-on: https://chromium-review.googlesource.com/c/infra/luci/luci-go/+/6244343 Commit-Queue: Oliver Newman <olivernewman@google.com> Reviewed-by: 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.