commit | a89800387a642f683181e5b568ad65a926ff7420 | [log] [tgz] |
---|---|---|
author | Weiwei Lin <weiweilin@google.com> | Fri Aug 26 01:06:02 2022 |
committer | LUCI CQ <infra-scoped@luci-project-accounts.iam.gserviceaccount.com> | Fri Aug 26 01:06:02 2022 |
tree | 807311cfbe535528256eb44237335be0f3d0c590 | |
parent | 4159c0d7ca1a1d59832981ca51cba13417cf5629 [diff] |
[milo] migrate UserConfigsStore to MST and add it to root store Step two towards merging all app/page-level states into a single store. Notable changes: 1. Add TransientKeySet to manage stale key deletion. 2. Replace UserConfigsStore with MST UserConfig store. 3. Stop providing UserConfigsStore, change all components to access UserConfig via the root Store. 4. Store a serialize snapshot in the local storage directly. 5. Add mechanism to recover from the v1 config when running for the first time. R=mdraz@google.com, nqmtuan@google.com Bug: 1353864,1334881 Change-Id: I900a80e19a6c433ced3abe004dcb0b8760849fce Reviewed-on: https://chromium-review.googlesource.com/c/infra/luci/luci-go/+/3852446 Commit-Queue: Weiwei Lin <weiweilin@google.com> Reviewed-by: Mostafa Draz <mdraz@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.