commit | 522a33343367e9c2487f66db890299bb990d5918 | [log] [tgz] |
---|---|---|
author | Yang Yang <echoyang@google.com> | Mon Nov 13 18:55:09 2023 |
committer | LUCI CQ <infra-scoped@luci-project-accounts.iam.gserviceaccount.com> | Mon Nov 13 18:55:09 2023 |
tree | e5f577e307308673cb9559b1f563ee0f6d00e41b | |
parent | 4088b4fbf382126663ef05ab40c0dc991a52c484 [diff] |
[bq] Rewrite biquery.ValueSaver implementation to use new protoreflect pkg Based on the commit history, this file has been relatively undeveloped for several years. The protoreflect pkg was released in 2020 with better support for manipulating proto messages over the reflect pkg. Bug: 1498605, 1498608 Test: go test ./... Test: Building, testing, and running infra/unifiedfleet Change-Id: I57fe3cfcc897d8c8658a4f76e8bc227f5ab527cd Reviewed-on: https://chromium-review.googlesource.com/c/infra/luci/luci-go/+/5002915 Commit-Queue: Yang Yang <echoyang@chromium.org> Reviewed-by: Vadim Shtayura <vadimsh@chromium.org>
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.