From 71cf9ca7e44acb9b453869807b2f325cd2ec7c0a Mon Sep 17 00:00:00 2001 From: Omer Caspi Date: Sat, 7 Sep 2024 17:56:05 +0300 Subject: [PATCH] tr: schemas order - Kill previous unused schemas - Bump internal usage to the update schema Signed-off-by: Omer Caspi --- schemas/taskrunner_4_2.json | 159 ---------------------------------- schemas/taskrunner_4_3.json | 163 ----------------------------------- schemas/taskrunner_4_4.json | 166 ------------------------------------ 3 files changed, 488 deletions(-) delete mode 100644 schemas/taskrunner_4_2.json delete mode 100644 schemas/taskrunner_4_3.json delete mode 100644 schemas/taskrunner_4_4.json diff --git a/schemas/taskrunner_4_2.json b/schemas/taskrunner_4_2.json deleted file mode 100644 index 47e7ffe..0000000 --- a/schemas/taskrunner_4_2.json +++ /dev/null @@ -1,159 +0,0 @@ -{ - "type": "object", - "properties": { - "version": { - "type": "object", - "properties": { - "major": { - "type": "number", - "minValue": 0 - }, - "minor": { - "type": "number", - "minValue": 1 - } - } - }, - "include": { - "type": "array", - "items": { - "type": "string", - "minLength": 1 - } - }, - "use_default_include": { - "type": "boolean" - }, - "tasks": { - "type": "object" - }, - "suppress": { - "type": "array", - "items": { - "type": "string", - "minLength": 1 - } - }, - "variables": { - "type": "object" - }, - "default_task": { - "type": "string" - }, - "default_shell_path": { - "type": "string", - "minLength": 1 - }, - "default_container_tool": { - "type": "string", - "minLength": 1 - } - }, - "required": [ - "version" - ], - "additionalProperties": false, - "tasks": { - "type": "object", - "properties": { - "base": { - "type": "string", - "minLength": 1 - }, - "short_desc": { - "type": "string", - "maxLength": 75 - }, - "description": { - "type": "string" - }, - "commands": { - "type": "array", - "items": { - "type": "string", - "minLength": 1 - } - }, - "cwd": { - "type": "string", - "minLength": 1 - }, - "shell": { - "type": "boolean" - }, - "shell_path": { - "type": "string", - "minLength": 1 - }, - "env": { - "type": "object", - "additionalProperties": { - "type": "string" - } - }, - "stop_on_error": { - "type": "boolean" - }, - "hidden": { - "type": "boolean" - }, - "abstract": { - "type": "boolean" - }, - "variables": { - "type": "object" - }, - "c_image": { - "type": "string" - }, - "c_container_tool": { - "type": "string" - }, - "c_volumes": { - "type": "array", - "items": { - "type": "string" - } - }, - "c_interactive": { - "type": "boolean" - }, - "c_tty": { - "type": "boolean" - }, - "c_remove": { - "type": "boolean" - }, - "c_flags": { - "type": "string" - }, - "c_exec": { - "type": "boolean" - }, - "c_cwd": { - "type": "string", - "minLength": 1 - }, - "c_shell": { - "type": "boolean" - }, - "c_shell_path": { - "type": "string", - "minLength": 1 - }, - "c_sudo": { - "type": "boolean" - }, - "c_env": { - "type": "object", - "additionalProperties": { - "type": "string" - } - }, - "meta": { - "type": "object" - } - }, - "additionalProperties": false - } -} diff --git a/schemas/taskrunner_4_3.json b/schemas/taskrunner_4_3.json deleted file mode 100644 index 3f287cc..0000000 --- a/schemas/taskrunner_4_3.json +++ /dev/null @@ -1,163 +0,0 @@ -{ - "type": "object", - "properties": { - "$schema": { - "type": "string", - "minLength": 1 - }, - "version": { - "type": "object", - "properties": { - "major": { - "type": "number", - "minValue": 0 - }, - "minor": { - "type": "number", - "minValue": 1 - } - } - }, - "include": { - "type": "array", - "items": { - "type": "string", - "minLength": 1 - } - }, - "use_default_include": { - "type": "boolean" - }, - "tasks": { - "type": "object" - }, - "suppress": { - "type": "array", - "items": { - "type": "string", - "minLength": 1 - } - }, - "variables": { - "type": "object" - }, - "default_task": { - "type": "string" - }, - "default_shell_path": { - "type": "string", - "minLength": 1 - }, - "default_container_tool": { - "type": "string", - "minLength": 1 - } - }, - "required": [ - "version" - ], - "additionalProperties": false, - "tasks": { - "type": "object", - "properties": { - "base": { - "type": "string", - "minLength": 1 - }, - "short_desc": { - "type": "string", - "maxLength": 75 - }, - "description": { - "type": "string" - }, - "commands": { - "type": "array", - "items": { - "type": "string", - "minLength": 1 - } - }, - "cwd": { - "type": "string", - "minLength": 1 - }, - "shell": { - "type": "boolean" - }, - "shell_path": { - "type": "string", - "minLength": 1 - }, - "env": { - "type": "object", - "additionalProperties": { - "type": "string" - } - }, - "stop_on_error": { - "type": "boolean" - }, - "hidden": { - "type": "boolean" - }, - "abstract": { - "type": "boolean" - }, - "variables": { - "type": "object" - }, - "c_image": { - "type": "string" - }, - "c_container_tool": { - "type": "string" - }, - "c_volumes": { - "type": "array", - "items": { - "type": "string" - } - }, - "c_interactive": { - "type": "boolean" - }, - "c_tty": { - "type": "boolean" - }, - "c_remove": { - "type": "boolean" - }, - "c_flags": { - "type": "string" - }, - "c_exec": { - "type": "boolean" - }, - "c_cwd": { - "type": "string", - "minLength": 1 - }, - "c_shell": { - "type": "boolean" - }, - "c_shell_path": { - "type": "string", - "minLength": 1 - }, - "c_sudo": { - "type": "boolean" - }, - "c_env": { - "type": "object", - "additionalProperties": { - "type": "string" - } - }, - "meta": { - "type": "object" - } - }, - "additionalProperties": false - } -} diff --git a/schemas/taskrunner_4_4.json b/schemas/taskrunner_4_4.json deleted file mode 100644 index 99f1a01..0000000 --- a/schemas/taskrunner_4_4.json +++ /dev/null @@ -1,166 +0,0 @@ -{ - "type": "object", - "properties": { - "$schema": { - "type": "string", - "minLength": 1 - }, - "version": { - "type": "object", - "properties": { - "major": { - "type": "number", - "minValue": 0 - }, - "minor": { - "type": "number", - "minValue": 1 - } - } - }, - "include": { - "type": "array", - "items": { - "type": "string", - "minLength": 1 - } - }, - "use_default_include": { - "type": "boolean" - }, - "tasks": { - "type": "object" - }, - "suppress": { - "type": "array", - "items": { - "type": "string", - "minLength": 1 - } - }, - "variables": { - "type": "object" - }, - "default_task": { - "type": "string" - }, - "default_shell_path": { - "type": "string", - "minLength": 1 - }, - "default_container_tool": { - "type": "string", - "minLength": 1 - } - }, - "required": [ - "version" - ], - "additionalProperties": false, - "tasks": { - "type": "object", - "properties": { - "base": { - "type": "string", - "minLength": 1 - }, - "short_desc": { - "type": "string", - "maxLength": 75 - }, - "description": { - "type": "string" - }, - "commands": { - "type": "array", - "items": { - "type": "string", - "minLength": 1 - } - }, - "cwd": { - "type": "string", - "minLength": 1 - }, - "shell": { - "type": "boolean" - }, - "shell_path": { - "type": "string", - "minLength": 1 - }, - "env": { - "type": "object", - "additionalProperties": { - "type": "string" - } - }, - "env_inherit": { - "type": "boolean" - }, - "stop_on_error": { - "type": "boolean" - }, - "hidden": { - "type": "boolean" - }, - "abstract": { - "type": "boolean" - }, - "variables": { - "type": "object" - }, - "c_image": { - "type": "string" - }, - "c_container_tool": { - "type": "string" - }, - "c_volumes": { - "type": "array", - "items": { - "type": "string" - } - }, - "c_interactive": { - "type": "boolean" - }, - "c_tty": { - "type": "boolean" - }, - "c_remove": { - "type": "boolean" - }, - "c_flags": { - "type": "string" - }, - "c_exec": { - "type": "boolean" - }, - "c_cwd": { - "type": "string", - "minLength": 1 - }, - "c_shell": { - "type": "boolean" - }, - "c_shell_path": { - "type": "string", - "minLength": 1 - }, - "c_sudo": { - "type": "boolean" - }, - "c_env": { - "type": "object", - "additionalProperties": { - "type": "string" - } - }, - "meta": { - "type": "object" - } - }, - "additionalProperties": false - } -}