Index: third_party/cq_client/cq.proto |
diff --git a/third_party/cq_client/cq.proto b/third_party/cq_client/cq.proto |
index 8b1950dc113d7cc6e8a67bb90d280919991ff29b..7fd7f381fd4a91c940a982a33a42ae1dfcdfa519 100644 |
--- a/third_party/cq_client/cq.proto |
+++ b/third_party/cq_client/cq.proto |
@@ -93,10 +93,6 @@ 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; |
- |
message ReviewerLgtmVerifier { |
// Required. Name of the project, whose committer list to use. This allows |
// to reuse committer lists. Note that if you are adding a new list, then |
@@ -123,12 +119,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 +127,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 |
@@ -158,9 +145,4 @@ message Verifiers { |
// Buckets on which tryjobs are triggered/watched. |
repeated Bucket buckets = 1; |
} |
- |
- message PresubmitCheckVerifier { |
- // After this timeout in seconds, the presubmit process will be killed. |
- optional int32 timeout = 1; |
- } |
} |