blob: e55069b70a43f8376beb92991bb996963b73feea [file] [log] [blame]
// Copyright 2021 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.zbi_test;
message InputProperties {
// Jiri manifest to use.
string manifest = 1;
// Remote manifest repository.
string remote = 2;
// Allowed device types to run on
repeated string allowed_device_types = 3;
// The swarming pool to run test tasks in.
string test_pool = 4;
// A path within the checkout to a fint parameters file.
string fint_params_path = 5;
// Maximum number of times to run each test in case of failures.
int32 max_attempts_per_test = 6;
// The GCS bucket to upload artifacts to.
string artifact_gcs_bucket = 7;
}