blob: 2522d7fcea268c1d5c3ca7c3d768f60d5243b7f8 [file] [log] [blame]
// Copyright 2020 The Chromium OS 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 testplans;
option go_package = "go.chromium.org/chromiumos/infra/proto/go/testplans";
import "testplans/common.proto";
// Configures the scheduling of slim CQ builds when the triggering CLs only
// affect paths which are eligible for slim builds.
message SlimBuildCfg {
// File patterns that are eligible for slim builds.
// See documentation in the FilePattern message.
repeated FilePattern slim_eligible_file_patterns = 1;
}