From 69fdfcdda423b55c7251e4d46e82563cda98a63d Mon Sep 17 00:00:00 2001 From: Helmut Grohne Date: Thu, 27 May 2021 11:54:04 +0200 Subject: add new field .output.artifacts to schema Using the field you can specify an ORed set of positive glob-style patterns for artifacts to retain in the .output.directory. It defaults to including all artifacts. --- mdbp/build_schema.json | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'mdbp/build_schema.json') diff --git a/mdbp/build_schema.json b/mdbp/build_schema.json index 2a357c9..c908fb6 100644 --- a/mdbp/build_schema.json +++ b/mdbp/build_schema.json @@ -152,6 +152,13 @@ "type": "boolean", "default": true, "description": "whether to output the build log on the stdout file descriptor" + }, + "artifacts": { + "type": "array", + "items": { "type": "string" }, + "uniqueItems": true, + "default": [ "*" ], + "description": "Any build artifact that matches any of these glob style patterns is included in the output. Patterns allow *, ?, [ranges] and [!ranges]." } } } -- cgit v1.2.3