blob: f6bf5fe94406dfb2ab88b8d086543d7bcc531bee [file] [log] [blame]
// Copyright 2020 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 recipes.pigweed.docs_builder;
import "recipe_modules/pigweed/build/options.proto";
import "recipe_modules/pigweed/checkout/options.proto";
import "recipe_modules/pigweed/environment/options.proto";
message InputProperties {
// Destination GCS bucket. Default is "pigweed-docs".
string bucket = 1;
// Don't do anything that has external effects.
bool dry_run = 2;
// Build module options.
recipe_modules.pigweed.build.Options build_options = 3;
// Environment module options.
recipe_modules.pigweed.environment.Options environment_options = 4;
// Checkout module options.
recipe_modules.pigweed.checkout.Options checkout_options = 5;
// Base URL of webpage. Only used in the summary_result of the build.
// Default: "https://pigweed.dev/".
string base_url = 6;
}