blob: 2bac8e58a5ec79403f1f0d2ed1226419cf61b896 [file]
// Copyright 2024 The Pigweed Authors
//
// Licensed under the Apache License, Version 2.0 (the "License"); you may not
// use this file except in compliance with the License. You may obtain a copy of
// the License at
//
// https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
// License for the specific language governing permissions and limitations under
// the License.
syntax = "proto3";
package recipe_modules.pigweed.bazel_roll;
message BazelCipdPackage {
// The path of the WORKSPACE or MODULE.bazel file to update. Optional if
// exactly one of WORKSPACE and MODULE.bazel is present at the root of the
// checkout. Can also be a directory, and will apply the same rules to the
// contents of that directory.
string workspace_path = 1;
// Name of CIPD package. Default is to extract from package_spec.
string name = 2;
// Path to CIPD package (as specified in json file, maybe using
// "${platform}"). Required.
string spec = 3;
// Ref to update tag to. Default: 'latest'.
string ref = 4;
// Key of tag to use (e.g., "git_revision" or "version"). Default:
// "git_revision".
string tag = 5;
// Do not consider it an error if the package versions with the requested ref
// have different tags for different platforms. Instead, find a tag such
// that (1) for *some* platform, the package with this tag has the requested
// ref, and (2) a package with this tag exists for *all* platforms.
bool allow_mismatched_refs = 6;
}