aboutsummaryrefslogtreecommitdiff
path: root/tests/aiet/test_resources/various/applications/application_with_wrong_config2/aiet-config.json
blob: 1ebb29c72e25713086504421b1d109453d24cb75 (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
[
  {
    "name": "test_application",
    "description": "This is test_application",
    "build_dir": "build",
    "commands": {
      "build": [
        "cp ../hello_app.txt ."
      ],
      "run": [
        "{application.build_dir}/hello_app.txt"
      ]
    },
    "user_params": {
      "build": [
        {
          "name": "--app",
          "description": "Sample command param",
          "values": [
            "application1",
            "application2",
            "application3"
          ],
          "default_value": "application1"
        }
      ],
      "run": []
    }
  }
]