blob: 1d0625e3deea3ce4b5bc3c83152969441f571f7b [file] [log] [blame]
// Copyright 2023 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.qemu;
import "google/protobuf/struct.proto";
message InputProperties {
// Remote URL of QEMU repository to checkout.
string remote = 1;
// Git ref to checkout. Overrides the default behavior of respecting the
// build input.
string ref = 2;
// CIPD platform for the target.
string platform = 3;
// Whether to do a production build.
bool prod = 4;
// Mapping from platform name to list of builders to trigger (Format: '<project>/<trigger name>').
map<string, google.protobuf.ListValue> builders = 5;
}