You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
depot_tools/third_party/cq_client
sergiyb@chromium.org 20b08f266b Update cq_client in depot_tools form CQ repo
R=tandrii@chromium.org
BUG=564557

Review URL: https://codereview.chromium.org/1534813002

git-svn-id: svn://svn.chromium.org/chrome/trunk/tools/depot_tools@298053 0039d316-1c4b-4281-b951-d872f2087c98
9 years ago
..
test Roll CQ client changes 7d916d5..f59ed9f 9 years ago
OWNERS Remove akuegel@ from OWNERS. 9 years ago
README.md
__init__.py
cq.pb.go Update cq_client in depot_tools form CQ repo 9 years ago
cq.proto Update cq_client in depot_tools form CQ repo 9 years ago
cq_pb2.py Update cq_client in depot_tools form CQ repo 9 years ago
validate_config.py

README.md

This directory contains CQ client library to be distributed to other repos. If you need to modify some files in this directory, please make sure that you are changing the canonical version of the source code and not one of the copies, which should only be updated as a whole using Glyco (when available, see chromium issue 489420).

The canonical version is located at https://chrome-internal.googlesource.com/ infra/infra_internal/+/master/commit_queue/cq_client.

You'll need to use protoc version 2.6.1 and recent golang/protobuf package. Sadly, the latter has neither tags nor versions.

You can get protobuf by downloading archive from https://github.com/google/protobuf/tree/v2.6.1 and manually building it. As for golang compiler, if you have go configured, just

go get -u github.com/golang/protobuf/{proto,protoc-gen-go}

TODO(tandrii,sergiyb): decide how to pin the go protobuf generator.

To generate cq_pb2.py and cq.pb.go:

cd commit_queue/cq_client
protoc cq.proto --python_out $(pwd) --go_out $(pwd)

Additionally, please make sure to use proto3-compatible syntax, e.g. no default values, no required fields. Ideally, we should use proto3 generator already, however alpha version thereof is still unstable.