Commit dc3a1c10 authored by sheyang@chromium.org's avatar sheyang@chromium.org

Updated cq_client library with signcla verifier

BUG=457428

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

git-svn-id: svn://svn.chromium.org/chrome/trunk/tools/depot_tools@295680 0039d316-1c4b-4281-b951-d872f2087c98
parent 78624b68
......@@ -93,9 +93,9 @@ message Verifiers {
// result is too old (>1 day) it is ignored.
optional TryJobVerifier try_job = 3;
// Deprecated. This verifier is only used by some legacy CQs that run
// presubmit on the CQ host. Please use a presubmit builder instead.
optional PresubmitCheckVerifier presubmit_check = 4;
// This verifier is used to ensure that the author has signed Google's
// Contributor License Agreement.
optional SignCLAVerifier sign_cla = 4;
message ReviewerLgtmVerifier {
// Required. Name of the project, whose committer list to use. This allows
......@@ -123,12 +123,6 @@ message Verifiers {
}
message TryJobVerifier {
message Property {
optional string name = 1;
// TODO(sergiyb): Change type to Any on switching to protobuf3.
optional string value = 2;
}
message Builder {
// Name of the builder.
optional string name = 1;
......@@ -137,9 +131,6 @@ message Verifiers {
// be triggered from another tryjob. Default value is true.
optional bool triggered = 2;
// Arbitrary properties passed to the tryjob.
repeated Property properties = 3;
// When this field is present, it marks given builder as experimental. It
// is only executed on a given percentage of the CLs and the outcome does
// not affect the decicion whether a CL can land or not. This is typically
......@@ -159,8 +150,5 @@ message Verifiers {
repeated Bucket buckets = 1;
}
message PresubmitCheckVerifier {
// After this timeout in seconds, the presubmit process will be killed.
optional int32 timeout = 1;
}
message SignCLAVerifier {}
}
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment