blob: bc5826637d5e009982c15d8dd14bd38de85d5186 [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_test_suite;
message InputProperties {
// Git repository URL.
string repository = 1;
// CIPD platform for the target.
string platform = 2;
message ClangToolchain {
// "cipd" or "isolated".
string type = 1;
// CIPD version of CAS hash.
string instance = 2;
}
ClangToolchain clang_toolchain = 3;
}