commit | 65d45a4326342ee5af28fe738829b19183dac1e4 | [log] [tgz] |
---|---|---|
author | Yiwei Zhang <yiwzhang@google.com> | Wed Jan 24 21:58:23 2024 |
committer | LUCI CQ <infra-scoped@luci-project-accounts.iam.gserviceaccount.com> | Wed Jan 24 21:58:23 2024 |
tree | 53a90d89879ba33336523e0925e41ef450612289 | |
parent | d538079c0f377615222fa89cae4eeb1fffc2a257 [diff] |
cv: skip adding the builder if the builder is not found in the config This is a temporary fix to the LUCI analysis alert. The reason why the error is happening is documented in the TODO above the changed code. It is triggered by this config change: http://tqr/800052 R=ddoman Change-Id: Ib1140217e645380c1fdd5b1cd5700c947199cdd3 Reviewed-on: https://chromium-review.googlesource.com/c/infra/luci/luci-go/+/5234887 Commit-Queue: Yiwei Zhang <yiwzhang@google.com> Auto-Submit: Yiwei Zhang <yiwzhang@google.com> Reviewed-by: Scott Lee <ddoman@chromium.org> Commit-Queue: Scott Lee <ddoman@chromium.org>
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.