aboutsummaryrefslogtreecommitdiff
path: root/tests/aiet/test_resources/application_config.json
blob: 2dfcfecd2b5a2054504b2c2ed2d321bbbfc93c3d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
[
  {
    "name": "application_1",
    "description": "application number one",
    "supported_systems": [
      "system_1",
      "system_2"
    ],
    "build_dir": "build_dir_11",
    "commands": {
      "clean": [
        "clean_cmd_11"
      ],
      "build": [
        "build_cmd_11"
      ],
      "run": [
        "run_cmd_11"
      ],
      "post_run": [
        "post_run_cmd_11"
      ]
    },
    "user_params": {
      "run": [
        {
          "name": "run_param_11",
          "values": [],
          "description": "run param number one"
        }
      ],
      "build": [
        {
          "name": "build_param_11",
          "values": [],
          "description": "build param number one"
        },
        {
          "name": "build_param_12",
          "values": [],
          "description": "build param number two"
        },
        {
          "name": "build_param_13",
          "values": [
            "value_1"
          ],
          "description": "build param number three with some value"
        }
      ]
    }
  },
  {
    "name": "application_2",
    "description": "application number two",
    "supported_systems": [
      "system_2"
    ],
    "build_dir": "build_dir_21",
    "commands": {
      "clean": [
        "clean_cmd_21"
      ],
      "build": [
        "build_cmd_21",
        "build_cmd_22"
      ],
      "run": [
        "run_cmd_21"
      ],
      "post_run": [
        "post_run_cmd_21"
      ]
    },
    "user_params": {
      "build": [
        {
          "name": "build_param_21",
          "values": [],
          "description": "build param number one"
        },
        {
          "name": "build_param_22",
          "values": [],
          "description": "build param number two"
        },
        {
          "name": "build_param_23",
          "values": [],
          "description": "build param number three"
        }
      ],
      "run": []
    }
  }
]