Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(66)

Side by Side Diff: third_party/cq_client/cq.proto

Issue 1156373013: Updated cq_client library (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/depot_tools
Patch Set: Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | third_party/cq_client/cq_pb2.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 syntax = "proto2"; 1 syntax = "proto2";
2 2
3 // This message describes a Commit Queue configuration. The config file cq.cfg 3 // This message describes a Commit Queue configuration. The config file cq.cfg
4 // should be stored in the config directory located on the branch that this CQ 4 // should be stored in the config directory located on the branch that this CQ
5 // should commit to. 5 // should commit to.
6 message Config { 6 message Config {
7 // Required. Version of the config format. 7 // Required. Version of the config format.
8 optional int32 version = 1; 8 optional int32 version = 1;
9 9
10 // Required. Name of the CQ. May only contain characters [a-zA-Z0-9_]. It is 10 // Required. Name of the CQ. May only contain characters [a-zA-Z0-9_]. It is
(...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after
152 optional string name = 1; 152 optional string name = 1;
153 153
154 // Builders on which tryjobs should be triggered. 154 // Builders on which tryjobs should be triggered.
155 repeated Builder builders = 2; 155 repeated Builder builders = 2;
156 } 156 }
157 157
158 // Buckets on which tryjobs are triggered/watched. 158 // Buckets on which tryjobs are triggered/watched.
159 repeated Bucket buckets = 1; 159 repeated Bucket buckets = 1;
160 } 160 }
161 161
162 message PresubmitCheckVerifier {} 162 message PresubmitCheckVerifier {
163 // After this timeout in seconds, the presubmit process will be killed.
164 optional int32 timeout = 1;
165 }
163 } 166 }
OLDNEW
« no previous file with comments | « no previous file | third_party/cq_client/cq_pb2.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698