kiwibuild: Add kiwibuild global options

This is already supported by code, just missing in the schema.

Signed-off-by: Lubomír Sedlář <lsedlar@redhat.com>
This commit is contained in:
Lubomír Sedlář 2024-03-01 14:41:01 +01:00
parent b032425f30
commit b9d94970b5

View File

@ -1238,7 +1238,6 @@ def make_schema():
"subvariant": {"type": "string"}, "subvariant": {"type": "string"},
}, },
"required": [ "required": [
"target",
"description_scm", "description_scm",
"description_path", "description_path",
"kiwi_profile", "kiwi_profile",
@ -1249,6 +1248,9 @@ def make_schema():
}, },
"additionalProperties": False, "additionalProperties": False,
}, },
"kiwibuild_target": {"type": "string"},
"kiwibuild_release": {"$ref": "#/definitions/optional_string"},
"kiwibuild_version": {"type": "string"},
"osbuild_target": {"type": "string"}, "osbuild_target": {"type": "string"},
"osbuild_release": {"$ref": "#/definitions/optional_string"}, "osbuild_release": {"$ref": "#/definitions/optional_string"},
"osbuild_version": {"type": "string"}, "osbuild_version": {"type": "string"},