commit | 5d221f668ab734d3c5814772cebd5a1ba01f5b5f | [log] [tgz] |
---|---|---|
author | Jonah Hooper <jonahhooper@google.com> | Tue Dec 12 22:47:13 2023 |
committer | LUCI CQ <infra-scoped@luci-project-accounts.iam.gserviceaccount.com> | Tue Dec 12 22:47:13 2023 |
tree | d47e529fe3e758269d975040133f9d57cc5e6e4e | |
parent | a4b9b9d8f8ba904212a9ff3a33be76060d380f3c [diff] |
[swarming] [bq] Adjustments to BQ exporter - taskpb has more fields because they are explicitly needed by the exportTask - improved logging - no more double negative error which was causing cuttoff to be in the future - more human readable task titles Bug: 1500695 Change-Id: Ib8b6005e0fdc39c0dcbed309f82991458aa16d88 Reviewed-on: https://chromium-review.googlesource.com/c/infra/luci/luci-go/+/5117160 Commit-Queue: Vadim Shtayura <vadimsh@chromium.org> Auto-Submit: Jonah Hooper <jonahhooper@google.com> Reviewed-by: Vadim Shtayura <vadimsh@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.