From 6cbd3a376b4c1e8a0fa44daedcc41445de6bdb47 Mon Sep 17 00:00:00 2001 From: Danilo Cianfrone Date: Thu, 21 Dec 2023 10:49:21 +0100 Subject: [PATCH] fix: run make generate-schemas-v2 --- docs-v2/content/en/schemas/v4beta9.json | 29 +++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/docs-v2/content/en/schemas/v4beta9.json b/docs-v2/content/en/schemas/v4beta9.json index 0e8eedfac80..7d3e5984621 100755 --- a/docs-v2/content/en/schemas/v4beta9.json +++ b/docs-v2/content/en/schemas/v4beta9.json @@ -712,6 +712,29 @@ "description": "describes an artifact built with [Bazel](https://bazel.build/).", "x-intellij-html-description": "describes an artifact built with Bazel." }, + "BazelConfig": { + "properties": { + "args": { + "items": { + "type": "string" + }, + "type": "array", + "description": "args to pass to `bazel build` for all the `bazel` targets in the build step.", + "x-intellij-html-description": "args to pass to bazel build for all the bazel targets in the build step.", + "default": "[]", + "examples": [ + "[\"-flag\", \"--otherflag\"]" + ] + } + }, + "preferredOrder": [ + "args" + ], + "additionalProperties": false, + "type": "object", + "description": "contains some configuration to apply to `bazel` commands when building `BazelArtifact` targets locally.", + "x-intellij-html-description": "contains some configuration to apply to bazel commands when building BazelArtifact targets locally." + }, "BuildConfig": { "type": "object", "anyOf": [ @@ -3198,6 +3221,11 @@ }, "LocalBuild": { "properties": { + "bazel": { + "$ref": "#/definitions/BazelConfig", + "description": "contains some configuration to apply to `bazel` commands when building `BazelArtifact` targets locally.", + "x-intellij-html-description": "contains some configuration to apply to bazel commands when building BazelArtifact targets locally." + }, "concurrency": { "type": "integer", "description": "how many artifacts can be built concurrently. 0 means \"no-limit\".", @@ -3229,6 +3257,7 @@ }, "preferredOrder": [ "push", + "bazel", "tryImportMissing", "useDockerCLI", "useBuildkit",