commit | 628962398b93b4fa85283ad0800333f0e86ba769 | [log] [tgz] |
---|---|---|
author | Matthew Warton <mwarton@google.com> | Tue Apr 23 02:38:18 2024 |
committer | LUCI CQ <infra-scoped@luci-project-accounts.iam.gserviceaccount.com> | Tue Apr 23 02:38:18 2024 |
tree | 4a2559143e355d6ec0a452d69e91d085021b59e6 | |
parent | 995cc2f099c911c9d7d9d42c2a113570b0981902 [diff] |
notify: Allow association of alerts with CLs as well as Bugs This will allow gardeners to associate alerts with a revert CL, and will eventually allow us to highlight when a revert CL has not worked because the alerts are still open. Change-Id: Ief9415a3c729f94947ef1580931ea26b37245b52 Reviewed-on: https://chromium-review.googlesource.com/c/infra/luci/luci-go/+/5444284 Reviewed-by: Tuan Nguyen <nqmtuan@google.com> Commit-Queue: Matthew Warton <mwarton@google.com> Auto-Submit: Matthew Warton <mwarton@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.