commit | 2266590420a3ef17717f76f698e9c0c2289839ab | [log] [tgz] |
---|---|---|
author | Weiwei Lin <weiweilin@google.com> | Mon Feb 27 06:18:54 2023 |
committer | LUCI CQ <infra-scoped@luci-project-accounts.iam.gserviceaccount.com> | Mon Feb 27 06:18:54 2023 |
tree | 32db865b8f2cdd5b8a06b952a93f474769cfe05e | |
parent | b6b9032f6a05a0f759a8527f06e48ffe05715566 [diff] |
[milo] mount build page to react router Mount build page and related tabs to react router. Switching between tabs will cause a full page reload. The best way to solve this is to migrate the build page component to React and use the <Link /> component from react-router for navigation. This will be implemented in the following CL. R=mdraz@google.com, nqmtuan@google.com Bug: 1408955 Change-Id: Iaa2f16c00e88a6f6afdc8d1a55288ccc6a14385c Reviewed-on: https://chromium-review.googlesource.com/c/infra/luci/luci-go/+/4278781 Reviewed-by: Mostafa Draz <mdraz@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.