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