commit | 4b30744f6a4114631ee2756acc60bd47d760d849 | [log] [tgz] |
---|---|---|
author | Patrick Meiring <meiring@google.com> | Wed Aug 30 06:08:28 2023 |
committer | LUCI CQ <infra-scoped@luci-project-accounts.iam.gserviceaccount.com> | Wed Aug 30 06:08:28 2023 |
tree | 00fe75a3bea46af49da4a0c7457d63307c00ed0e | |
parent | 34805d424e078025ec2c16411fb15329f1604c64 [diff] |
[Analysis] Export BugManagementState to BigQuery. Standardise audit fields. - Export failure association rule bug management state to BigQuery. - Export LastAuditableUpdateTime to BigQuery. - Standardise naming of audit fields in external protos, using create_time, last_update_time as the standard instead of creation_time, last_updated(_time). Rollout will involve wiping the existing failure association rule export table. Existing client will be notified. BUG=b:292843072 TEST=Integration tests Change-Id: I1753af6e4b8024bde1c8b56f1fb723aa1fc203a8 Reviewed-on: https://chromium-review.googlesource.com/c/infra/luci/luci-go/+/4825483 Reviewed-by: Matthew Warton <mwarton@google.com> Commit-Queue: Patrick Meiring <meiring@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.