commit | f9746c4f53a72e3f27e0d347afac043b7e32ed6c | [log] [tgz] |
---|---|---|
author | Beining Chen <beining@google.com> | Tue Oct 17 03:29:48 2023 |
committer | LUCI CQ <infra-scoped@luci-project-accounts.iam.gserviceaccount.com> | Tue Oct 17 03:29:48 2023 |
tree | 21778c326abd65daa8f4453b3deb0191d7629150 | |
parent | 12eab2b9d4b68d76f24ecf587d6d3bba188c2cb2 [diff] |
[Bisection] Update bisection routes This is to support bisection for different LUCI project. We want to include "project" in the url path, just like the builder page. Also, change /analysis/* to /compile-analysis/* for better clarity. Change-Id: I01914c41cce8e9ca75c6c11262aad4224c823017 Reviewed-on: https://chromium-review.googlesource.com/c/infra/luci/luci-go/+/4937491 Reviewed-by: Weiwei Lin <weiweilin@google.com> Commit-Queue: Beining Chen <beining@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.