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
|
{ "tool-under-test":
{ "type": "generic"
, "cmds": ["mkdir -p bin lib", "mv bin/just bin/tool-under-test"]
, "outs": ["bin/tool-under-test"]
, "out_dirs": ["lib"]
, "deps": [["@", "src", "", "installed just"]]
}
, "mr-tool-under-test":
{ "type": "generic"
, "arguments_config": ["TEST_BOOTSTRAP_JUST_MR"]
, "cmds":
[ "mkdir -p bin lib"
, { "type": "join_cmd"
, "$1":
[ "mv"
, { "type": "if"
, "cond": {"type": "var", "name": "TEST_BOOTSTRAP_JUST_MR"}
, "then": "bin/just-mr.py"
, "else": "bin/just-mr"
}
, "bin/mr-tool-under-test"
]
}
]
, "outs": ["bin/mr-tool-under-test"]
, "out_dirs":
{ "type": "if"
, "cond": {"type": "var", "name": "TEST_BOOTSTRAP_JUST_MR"}
, "then": []
, "else": ["lib"]
}
, "deps":
{ "type": "if"
, "cond": {"type": "var", "name": "TEST_BOOTSTRAP_JUST_MR"}
, "then": [["@", "src", "", "bin/just-mr.py"]]
, "else": [["@", "src", "", "installed just-mr"]]
}
}
, "git-import-under-test":
{ "type": "install"
, "files":
{"bin/git-import-under-test": ["@", "src", "", "bin/just-import-git.py"]}
}
, "TESTS":
{ "type": "install"
, "tainted": ["test"]
, "dirs":
[ [["./", "actions", "TESTS"], "actions"]
, [["./", "cli", "TESTS"], "cli"]
, [["./", "generated-binary", "TESTS"], "generated-binary"]
, [["./", "targets", "TESTS"], "targets"]
, [["./", "user-errors", "TESTS"], "user-errors"]
, [["./", "built-in-rules", "TESTS"], "built-in-rules"]
, [["./", "build-fails", "TESTS"], "build-fails"]
, [["./", "remote-execution", "TESTS"], "remote-execution"]
, [["./", "target-cache", "TESTS"], "target-cache"]
, [["./", "just-mr", "TESTS"], "just-mr"]
, [["./", "git-import", "TESTS"], "git-import"]
, [["./", "gc", "TESTS"], "gc"]
, [["./", "execution-service", "TESTS"], "execution-service"]
, [["./", "symlinks", "TESTS"], "symlinks"]
]
}
}
|