commit | 9c0be6e0707787b3f3887986962ed81662e8ec23 | [log] [tgz] |
---|---|---|
author | Anne Redulla <aredulla@google.com> | Thu Jan 18 03:26:58 2024 |
committer | LUCI CQ <infra-scoped@luci-project-accounts.iam.gserviceaccount.com> | Thu Jan 18 03:26:58 2024 |
tree | 8326ddcddecf9d6473f171955efc1f0b7c65c4fe | |
parent | 5e42e4bf7a861cce3de48882ab44b973d9da7543 [diff] |
[auth-service] Added dispatch.yaml for v1 enqueuing to v2 This CL defines a dispatch.yaml so that the Python version of Auth Service will be able to enqueue tasks to the Go version. Change-Id: Iacfb462df10b2a059310bb64a32af0f8c2fe15ab Reviewed-on: https://chromium-review.googlesource.com/c/infra/luci/luci-go/+/5209471 Commit-Queue: Anne Redulla <aredulla@google.com> Reviewed-by: Joey Scarr <jsca@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.