commit | e240372a4e907fc379e925b855da66c1d46fb061 | [log] [tgz] |
---|---|---|
author | Yiwei Zhang <yiwzhang@google.com> | Thu May 25 01:11:44 2023 |
committer | LUCI CQ <infra-scoped@luci-project-accounts.iam.gserviceaccount.com> | Thu May 25 01:11:44 2023 |
tree | 96728d1b65994023d1cabe2ea38d3f5bafec79c5 | |
parent | 27a27686e3b6c150e554240b6f7f83c6fff38a99 [diff] |
cv: record the end time of tryjob execution This is for emitting the metric that measures the delay from end of tryjob exeuction to result reporting (a.k.a reset triggers) R=ddoman Change-Id: I9dc8343c0f6aeea877c8f3bd7e2f79a25b0895ad Reviewed-on: https://chromium-review.googlesource.com/c/infra/luci/luci-go/+/4563891 Commit-Queue: Scott Lee <ddoman@chromium.org> Auto-Submit: Yiwei Zhang <yiwzhang@google.com> Reviewed-by: 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.