mirror of
https://chromium.googlesource.com/chromium/tools/depot_tools.git
synced 2026-01-11 10:41:31 +00:00
This logic's predecessor, run_presubmit, used an 8-minute timeout in all cases other than luci-py. Using that as a default (rather than 0s) seems reasonable. Recipe-Nontrivial-Roll: build Change-Id: I4b8668531db1a243709979b580c5170c22a0729f Reviewed-on: https://chromium-review.googlesource.com/c/chromium/tools/depot_tools/+/2020987 Commit-Queue: John Budorick <jbudorick@chromium.org> Reviewed-by: Andrii Shyshkalov <tandrii@google.com>
15 lines
460 B
Protocol Buffer
15 lines
460 B
Protocol Buffer
// Copyright 2019 The Chromium Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
syntax = "proto3";
|
|
package recipe_modules.depot_tools.presubmit;
|
|
|
|
message InputProperties {
|
|
// Whether gclient hooks should be run when setting up the checkout.
|
|
bool runhooks = 1;
|
|
// Timeout for presubmit execution, in seconds.
|
|
// Defaults to 480s (8 minutes).
|
|
int32 timeout_s = 2;
|
|
}
|