commit | 4b61984e259a51b264d9db81fa7bf798f4b471fe | [log] [tgz] |
---|---|---|
author | Brian Ryner <bryner@google.com> | Fri Jan 06 05:11:23 2023 |
committer | LUCI CQ <infra-scoped@luci-project-accounts.iam.gserviceaccount.com> | Fri Jan 06 05:11:23 2023 |
tree | 76c7145c3b67e6f7c67bb4641fecbb4d135ba08e | |
parent | 5c88ed487f71f8f62de51cec8d52afb5ef634114 [diff] |
Add a PackageMap field for per-python-version Virtualenv packages. Continue to look at the old Package field until we have switched the callers. Bug: 1399692 Change-Id: I807c0e71741c2e41e098337818e90c39564693b4 Reviewed-on: https://chromium-review.googlesource.com/c/infra/luci/luci-go/+/4141218 Reviewed-by: Chenlin Fan <fancl@chromium.org> Commit-Queue: Brian Ryner <bryner@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.