xref: /aosp_15_r20/external/crosvm/infra/recipes/build_linux.proto (revision bb4ee6a4ae7042d18b07a98463b9c8b875e44b39)
1// Copyright 2022 The ChromiumOS Authors
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5syntax = "proto3";
6
7package recipes.crosvm.build_linux;
8
9message BuildLinuxProperties {
10  // Architecture to test. See `crosvm/tools/run_tests`
11  optional string test_arch = 1;
12  // Test profile to use. See `crosvm/tools/run_tests`.
13  optional string profile = 6;
14
15  // [deprecated] Whether or not to test the crosvm-direct feature.
16  optional bool crosvm_direct = 2;
17  // [deprecated]  Repeat the the tests multiple times.
18  optional uint32 repeat_tests = 3;
19  // [deprecated] Retry tests if they failed.
20  optional uint32 retry_tests = 4;
21  // [deprecated] Whether or not to generate and upload test coverage.
22  optional bool coverage = 5;
23}
24