From 3e3dcb9bd5abb88adcd85b4f89e8a81e7f6fa293 Mon Sep 17 00:00:00 2001 From: Dmitrii Agibov Date: Fri, 27 Jan 2023 09:12:50 +0000 Subject: MLIA-595 Remove old backend configuration mechanism - Remove old backend configuration code - Install backends into directory ~/.mlia - Rename targets/backends in registry to make it consistent across codebase. Change-Id: I9c8b012fe863280f1c692940c0dcad3ef638aaae --- tests/test_resources/hello_world.json | 53 ----------------------------------- 1 file changed, 53 deletions(-) delete mode 100644 tests/test_resources/hello_world.json (limited to 'tests/test_resources/hello_world.json') diff --git a/tests/test_resources/hello_world.json b/tests/test_resources/hello_world.json deleted file mode 100644 index 28d7bd9..0000000 --- a/tests/test_resources/hello_world.json +++ /dev/null @@ -1,53 +0,0 @@ -[ - { - "name": "Hello world", - "description": "Sample application that displays 'Hello world!'", - "supported_systems": [ - "Sample System" - ], - "deploy_data": [ - [ - "src", - "/tmp/" - ], - [ - "README", - "/tmp/README.md" - ] - ], - "commands": { - "clean": [], - "build": [], - "run": [ - "echo 'Hello world!'", - "ls -l /tmp" - ], - "post_run": [] - }, - "user_params": { - "run": [ - { - "name": "--choice-param", - "values": [ - "value_1", - "value_2" - ], - "default_value": "value_1", - "description": "Choice param" - }, - { - "name": "--open-param", - "values": [], - "default_value": "value_4", - "description": "Open param" - }, - { - "name": "--enable-flag", - "default_value": "value_4", - "description": "Flag param" - } - ], - "build": [] - } - } -] -- cgit v1.2.1