2022-05-18 17:06:46 +00:00
|
|
|
// Copyright 2022 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 recipes.crosvm.build_linux;
|
|
|
|
|
|
|
|
message BuildLinuxProperties {
|
|
|
|
// Architecture to test. See `crosvm/tools/run_tests`
|
|
|
|
optional string test_arch = 1;
|
2022-07-06 21:22:36 +00:00
|
|
|
// Whether or not to test the crosvm-direct feature.
|
|
|
|
optional bool crosvm_direct = 2;
|
2022-07-08 00:57:45 +00:00
|
|
|
// Repeat the the tests multiple times.
|
2022-07-07 21:14:50 +00:00
|
|
|
optional uint32 repeat_tests = 3;
|
2022-07-08 00:57:45 +00:00
|
|
|
// Retry tests if they failed.
|
|
|
|
optional uint32 retry_tests = 4;
|
2022-05-18 17:06:46 +00:00
|
|
|
}
|