blob: 2d178fbe0059f696c4dfb92699f4522d56d4bd29 [file] [log] [blame]
// Copyright 2023 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.contrib.llvm;
message InputProperties {
// Git repository URL.
string repository = 1;
// CIPD platform for the target.
string platform = 2;
// CIPD version of the toolchain package.
string version = 3;
// LLVM components to distribute.
repeated string components = 4;
// Use reclient for remote C++ builds (takes precedence over Goma).
bool use_rbe = 5;
// Upload package to CIPD.
bool upload_package = 6;
// Git revision.
string revision = 7;
// Ignore test failure.
bool ignore_test_failure = 8;
}