summaryrefslogtreecommitdiff
path: root/tests/test.json
blob: a0d715a88602c99a888ad721bc1670f5212a8e3d (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
{
    "app-id": "org.test.Hello2",
    "runtime": "org.test.Platform",
    "sdk": "org.test.Sdk",
    "command": "hello2.sh",
    "tags": ["test"],
    "finish-args": [
        "--share=network"
    ],
    "build-options" : {
        "cflags": "-O2 -g",
        "cxxflags": "-O2 -g",
        "env": {
            "FOO": "bar",
            "V": "1"
        }
    },
    "cleanup": ["/cleanup", "*.cleanup"],
    "cleanup-commands": [ "touch /app/cleaned_up" ],
    "modules": [
        {
            "name": "test",
            "config-opts": ["--some-arg"],
            "post-install": [ "touch /app/bin/file.cleanup" ],
            "make-args": ["BAR=2" ],
            "make-install-args": ["BAR=3" ],
            "sources": [
                {
                    "type": "file",
                    "path": "test-configure",
                    "dest-filename": "configure",
                    "sha256": "ce0a7014057cc45ac6cfa4b84fe848d46b1225f4ce03f1b52d5ab73521816cbf"
                },
                {
                    "type": "file",
                    "path": "app-data"
                },
                {
                    "type": "script",
                    "dest-filename": "hello2.sh",
                    "commands": [ "echo \"Hello world2, from a sandbox\"" ]
                },
                {
                    "type": "shell",
                    "commands": [
                        "mkdir /app/cleanup/",
                        "touch /app/cleanup/a_file"
                    ]
                }
            ]
        }
    ]
}