From b9d94970b5b3c7edea7c32984e73f04a9c97c5ff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lubom=C3=ADr=20Sedl=C3=A1=C5=99?= Date: Fri, 1 Mar 2024 14:41:01 +0100 Subject: [PATCH] kiwibuild: Add kiwibuild global options MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This is already supported by code, just missing in the schema. Signed-off-by: Lubomír Sedlář --- pungi/checks.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pungi/checks.py b/pungi/checks.py index d9523357..1786083b 100644 --- a/pungi/checks.py +++ b/pungi/checks.py @@ -1238,7 +1238,6 @@ def make_schema(): "subvariant": {"type": "string"}, }, "required": [ - "target", "description_scm", "description_path", "kiwi_profile", @@ -1249,6 +1248,9 @@ def make_schema(): }, "additionalProperties": False, }, + "kiwibuild_target": {"type": "string"}, + "kiwibuild_release": {"$ref": "#/definitions/optional_string"}, + "kiwibuild_version": {"type": "string"}, "osbuild_target": {"type": "string"}, "osbuild_release": {"$ref": "#/definitions/optional_string"}, "osbuild_version": {"type": "string"},