diff options
| author | Brad Lewis <22850972+BradLewis@users.noreply.github.com> | 2025-12-06 05:05:07 -0500 |
|---|---|---|
| committer | Brad Lewis <22850972+BradLewis@users.noreply.github.com> | 2025-12-06 05:05:07 -0500 |
| commit | f1c77965bbdb137aa40d5890e52f71006aaa1470 (patch) | |
| tree | 8e13f3810fcabd59fe509458515eb045094c6d9f /misc/ols.schema.json | |
| parent | 0cf7f19eb147ae20c7427395397a08627de23264 (diff) | |
Add support for ols config profiles with defines and arch
Diffstat (limited to 'misc/ols.schema.json')
| -rw-r--r-- | misc/ols.schema.json | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/misc/ols.schema.json b/misc/ols.schema.json index c3ad997..b5ebd93 100644 --- a/misc/ols.schema.json +++ b/misc/ols.schema.json @@ -128,6 +128,10 @@ "type": "string", "description": "The operating system for the profile." }, + "arch": { + "type": "string", + "description": "The architecture for the profile." + }, "checker_path": { "type": "array", "description": "List of paths where to run the checker.", @@ -141,6 +145,13 @@ "items": { "type": "string" } + }, + "defines": { + "type": "object", + "description": "Key-value pairs of defines. Used for evaluating when expressions, for example `ODIN_DEBUG`. The value must be a string.", + "additionalProperties": { + "type": "string" + } } }, "required": ["name", "checker_path"], |