commit | 135483a6cc2a3da0eb3476494ad371e5a36ada16 | [log] [tgz] |
---|---|---|
author | Scott Lee <ddoman@chromium.org> | Wed Oct 04 01:12:59 2023 |
committer | LUCI CQ <infra-scoped@luci-project-accounts.iam.gserviceaccount.com> | Wed Oct 04 01:12:59 2023 |
tree | 941d13cd1674359b1261b88e43915fb112b088f1 | |
parent | 8223866789bb7454a4bfe60e86767bf2c1690217 [diff] |
[cv] notify PM with the terminal status of ended runs PM.OnRunsFinished() will use the status to reset the CQ trigger of the CLs that depend on the CL of the failed Run. Bug: 1470346 Change-Id: I88a5ff7c6be1a8bc4d80c6cd4a66ba7955fd5ff0 Reviewed-on: https://chromium-review.googlesource.com/c/infra/luci/luci-go/+/4906030 Commit-Queue: Scott Lee <ddoman@chromium.org> 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.