commit | 366c3d6752a782bc37f8e7f6cd072fb25fa4e915 | [log] [tgz] |
---|---|---|
author | Patrick Meiring <meiring@google.com> | Tue Nov 07 06:35:06 2023 |
committer | LUCI CQ <infra-scoped@luci-project-accounts.iam.gserviceaccount.com> | Tue Nov 07 06:35:06 2023 |
tree | 0b010ca4c51c7732811d894d6684d1c6173290ea | |
parent | f6d2f5f45e692e2e0109205582ac4c0383443c03 [diff] |
[Analysis] Stop auto-verifying non-LUCI Analysis bugs. The auto-verify and auto-prioritise features make sense for LUCI Analysis auto-filed bugs, but not for manually created bugs that we do not know the resolution criteria of. For manually created failure association rules, we already default the update bug toggle to OFF, but we do not do so when a LUCI Analysis bug is merged into another bug, even though this is a similiar case. (Rule for non-LUCI Analysis created bug.) See b/303834216 and b/300560193 for two examples today where this was behaving undesirably. BUG=None TEST=Integration tests Change-Id: Ia6f711ac44009e39797cda2224f0de2763283ec6 Reviewed-on: https://chromium-review.googlesource.com/c/infra/luci/luci-go/+/5009655 Commit-Queue: Patrick Meiring <meiring@google.com> Reviewed-by: Matthew Warton <mwarton@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.