From f28053eecc2bc1f036933082db8eb2c88ce4641d 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ář (cherry picked from commit b9d94970b5b3c7edea7c32984e73f04a9c97c5ff) --- pungi/checks.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pungi/checks.py b/pungi/checks.py index 3f56c0db..e1c4f1b7 100644 --- a/pungi/checks.py +++ b/pungi/checks.py @@ -1251,7 +1251,6 @@ def make_schema(): "subvariant": {"type": "string"}, }, "required": [ - "target", "description_scm", "description_path", "kiwi_profile", @@ -1262,6 +1261,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"},