blob: df69bdfd96b329bb00404b597072fe2f451723f2 [file] [log] [blame]
// Copyright 2022 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 recipe_modules.fuchsia.fxt;
import "google/protobuf/struct.proto";
message Options {
// Test SDK with all images
bool sdk_mode = 1;
// TAP projects to trigger.
repeated string tap_projects = 2;
// Whether to use staging host for RPCs.
bool use_staging_host = 3;
// How long to wait for external tests to finish.
int32 timeout_secs = 4;
// Config to run Guitar tests.
google.protobuf.Struct guitar_config = 5;
// Whether to trigger a Piper presubmit on CLs created by fxt.
bool piper_presubmit = 6;
}