blob: fb0dbd3c48da9b5cf0471b39605531f14cf6d419 [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.third_party_prebuilts;
message InputProperties {
// Jiri remote manifest project.
string project = 1;
// Jiri manifest to use.
string manifest = 2;
// Remote manifest repository.
string remote = 3;
// A JSON file describing the i/o that the recipe should undertake to prepare
// a staging directory.
string content_manifest = 4;
// A script that will consume a staging directory and populate another
// directory to be uploaded to CIPD.
string packing_script = 5;
// pairings of the form '<src>=<CIPD path>'; see recipe documentation for more
// details.
string cipd_pkg_name = 6;
}