blob: 7faf2a0150558c8c69f24bbef2ed5458cd6907f5 [file] [log] [blame]
// Copyright 2020 The Fuchsia 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 recipes.fuchsia.contrib.toolchain_trigger;
message InputProperties {
// List of toolchain builders to trigger.
repeated string builders = 1;
// List of toolchain nonblocking builders to trigger.
repeated string nonblocking_builders = 2;
// List of triggers to trigger.
repeated string triggers = 3;
// Bucket for builders.
string bucket = 4;
// Delay between requests when waiting.
int32 interval = 5;
// Time to wait for the builds to end.
int32 timeout = 6;
// Whether to enforce the child build has revision output.
bool enforce_output = 7;
}