commit | 899ec64fa8f958a2a521473fff02966d363976bf | [log] [tgz] |
---|---|---|
author | Yiwei Zhang <yiwzhang@google.com> | Tue Oct 25 23:50:26 2022 |
committer | LUCI CQ <infra-scoped@luci-project-accounts.iam.gserviceaccount.com> | Tue Oct 25 23:50:26 2022 |
tree | 55877d90c50251430d68dae63e8498812b0ac31c | |
parent | b4785ced29e02ed93614659d80fdc267a75c799b [diff] |
cv: add back ReportUsedNetrc rpc as it is still used in CQ Though the rpc is no longer called in CQ as all Projects have been migrated to use Project Scoped Service Account. It was originally removed in https://crrev.com/c/3961633. However, I don't want to touch CQ code so I'm temporarily adding the rpc back and wait for the final deprecation of CQ to remove it. Failed CQ build: http://go/bbid/8799295803745340241 R=ddoman Change-Id: I042423993eddf215ce1cb03418b068d914806479 Reviewed-on: https://chromium-review.googlesource.com/c/infra/luci/luci-go/+/3979019 Reviewed-by: Scott Lee <ddoman@chromium.org> Auto-Submit: Yiwei Zhang <yiwzhang@google.com> Commit-Queue: Yiwei Zhang <yiwzhang@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.