aboutsummaryrefslogtreecommitdiff
path: root/tests/aiet/test_resources/applications/application5/aiet-config.json
blob: 5269409b19f690cb229a0611d87c84ebf34f8b14 (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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
[
  {
    "name": "application_5",
    "description": "This is application 5",
    "build_dir": "default_build_dir",
    "supported_systems": [
      {
        "name": "System 1",
        "lock": false
      },
      {
        "name": "System 2"
      }
    ],
    "variables": {
      "var1": "value1",
      "var2": "value2"
    },
    "lock": true,
    "commands": {
      "build": [
        "default build command"
      ],
      "run": [
        "default run command"
      ]
    },
    "user_params": {
      "build": [],
      "run": []
    }
  },
  {
    "name": "application_5A",
    "description": "This is application 5A",
    "supported_systems": [
      {
        "name": "System 1",
        "build_dir": "build_5A",
        "variables": {
          "var1": "new value1"
        }
      },
      {
        "name": "System 2",
        "variables": {
          "var2": "new value2"
        },
        "lock": true,
        "commands": {
          "run": [
            "run command on system 2"
          ]
        }
      }
    ],
    "variables": {
      "var1": "value1",
      "var2": "value2"
    },
    "build_dir": "build",
    "commands": {
      "build": [
        "default build command"
      ],
      "run": [
        "default run command"
      ]
    },
    "user_params": {
      "build": [],
      "run": []
    }
  },
  {
    "name": "application_5B",
    "description": "This is application 5B",
    "supported_systems": [
      {
        "name": "System 1",
        "build_dir": "build_5B",
        "variables": {
          "var1": "value for var1 System1",
          "var2": "value for var2 System1"
        },
        "user_params": {
          "build": [
            {
              "name": "--param_5B",
              "description": "Sample command param",
              "values": [
                "value1",
                "value2",
                "value3"
              ],
              "default_value": "value1",
              "alias": "param1"
            }
          ]
        }
      },
      {
        "name": "System 2",
        "variables": {
          "var1": "value for var1 System2",
          "var2": "value for var2 System2"
        },
        "commands": {
          "build": [
            "build command on system 2 with {variables:var1} {user_params:param1}"
          ],
          "run": [
            "run command on system 2"
          ]
        },
        "user_params": {
          "run": []
        }
      }
    ],
    "build_dir": "build",
    "commands": {
      "build": [
        "default build command with {variables:var1}"
      ],
      "run": [
        "default run command with {variables:var2}"
      ]
    },
    "user_params": {
      "build": [
        {
          "name": "--param",
          "description": "Sample command param",
          "values": [
            "value1",
            "value2",
            "value3"
          ],
          "default_value": "value1",
          "alias": "param1"
        }
      ],
      "run": [],
      "non_used_command": [
        {
          "name": "--not-used",
          "description": "Not used param anywhere",
          "values": [
            "value1",
            "value2",
            "value3"
          ],
          "default_value": "value1",
          "alias": "param1"
        }
      ]
    }
  }
]