crosvm/infra/recipes/build_linux.proto
Dennis Kempin d8f5fe543a infra: Integrate coverage upload into build_linux
This allows us to upload coverage from all post-submit
builders.
codecov.io will merge all uploaded reports so we can see
a combined view of code coverage across architectures.

BUG=b:239255082
TEST=./infra/recipes.py test run

Change-Id: I7705ab646bc86a159a2650cfd35be38e6fedfcca
Reviewed-on: https://chromium-review.googlesource.com/c/crosvm/crosvm/+/3817977
Commit-Queue: Dennis Kempin <denniskempin@google.com>
Reviewed-by: Daniel Verkamp <dverkamp@chromium.org>
Tested-by: Dennis Kempin <denniskempin@google.com>
2022-08-09 17:23:42 +00:00

20 lines
672 B
Protocol Buffer

// 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;
// Whether or not to test the crosvm-direct feature.
optional bool crosvm_direct = 2;
// Repeat the the tests multiple times.
optional uint32 repeat_tests = 3;
// Retry tests if they failed.
optional uint32 retry_tests = 4;
// Whether or not to generate and upload test coverage.
optional bool coverage = 5;
}