commit | 99e088ff9088c3adcad2b79b22f284bcddacfc97 | [log] [tgz] |
---|---|---|
author | Matthew Warton <mwarton@google.com> | Wed Nov 15 05:38:14 2023 |
committer | LUCI CQ <infra-scoped@luci-project-accounts.iam.gserviceaccount.com> | Wed Nov 15 05:38:14 2023 |
tree | 5c32f2c9505689ac2ad01236253dbb4bd4baee2f | |
parent | 180aa543532140d31f3dbe24b93883ddf9bbe42b [diff] |
resultdb: Add skip reason fields Add a skip reason HTML and machine readable enum field to test results. This will allow: 1. Removing skip reasons from the failure_reason field 2. Distinguishing ChromeOS tests that have been filtered from the CQ so that we can calculate impact of the postsubmit tests that caused the automated skips. Change-Id: Ic6949ab70086ce5fe12ed55924f786c4581ef94e Reviewed-on: https://chromium-review.googlesource.com/c/infra/luci/luci-go/+/4988344 Reviewed-by: Derek Beckett <dbeckett@chromium.org> Reviewed-by: Patrick Meiring <meiring@google.com> Commit-Queue: Matthew Warton <mwarton@google.com> Reviewed-by: Weiwei Lin <weiweilin@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.