diff options
author | Helmut Grohne <helmut@subdivi.de> | 2021-05-27 11:54:04 +0200 |
---|---|---|
committer | Helmut Grohne <helmut@subdivi.de> | 2021-05-27 11:54:04 +0200 |
commit | 69fdfcdda423b55c7251e4d46e82563cda98a63d (patch) | |
tree | 4299a69f4ae7461065f3f1bb48ac9f2ba557f058 /mdbp/build_schema.json | |
parent | afff0dc73188ac323ec0265cc6b39c67f9fd7474 (diff) | |
download | mdbp-69fdfcdda423b55c7251e4d46e82563cda98a63d.tar.gz |
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.
Diffstat (limited to 'mdbp/build_schema.json')
-rw-r--r-- | mdbp/build_schema.json | 7 |
1 files changed, 7 insertions, 0 deletions
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]." } } } |