commit | 0a5a8e0393efeabcf5a0a31519e7977312672d8b | [log] [tgz] |
---|---|---|
author | Weiwei Lin <weiweilin@google.com> | Fri Feb 02 00:54:38 2024 |
committer | LUCI CQ <infra-scoped@luci-project-accounts.iam.gserviceaccount.com> | Fri Feb 02 00:54:38 2024 |
tree | 2c12f934355dd5045adff5f4a51930da3ceda3ab | |
parent | d99cae01c4c259681b1b35463af51b878e3d232d [diff] |
luci-ui: migrate bisection to use the generated prpc bindings Also change the way we share the impmenetation of components between analysis and test analysis. Instead of accepting a type that is mostly a subset of another type, and add special cases in the components, convert type to a general type before they are passed down to the shared components. This is required as the generated proto Analysis/ TestAnalysis types are less compatible with each other because enums are now numbers instead of strings. R=beining@google.com, nqmtuan@google.com Bug: 1504937 Change-Id: I5f3316a0981e3f2088122124fd2172222ea3b66b Reviewed-on: https://chromium-review.googlesource.com/c/infra/luci/luci-go/+/5246887 Reviewed-by: Beining Chen <beining@google.com> Commit-Queue: Weiwei Lin <weiweilin@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.