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
|
{ "git-import-under-test":
{ "type": "install"
, "files":
{"bin/git-import-under-test": ["@", "src", "", "bin/just-import-git.py"]}
}
, "deduplicate-tool-under-test":
{ "type": "install"
, "files":
{ "bin/deduplicate-tool-under-test":
["@", "src", "", "bin/just-deduplicate-repos.py"]
}
}
, "lock-tool-under-test":
{ "type": "install"
, "files": {"bin/lock-tool-under-test": ["@", "src", "", "bin/just-lock.py"]}
}
, "remote tests (unconfigured)":
{ "type": ["@", "rules", "test", "matrix"]
, "arguments_config": ["TEST_COMPATIBLE_REMOTE", "TEST_BOOTSTRAP_JUST_MR"]
, "deps":
{ "type": "++"
, "$1":
[ [["./", "remote-execution", "TESTS"], ["./", "just-mr", "TESTS"]]
, { "type": "if"
, "cond": {"type": "var", "name": "TEST_BOOTSTRAP_JUST_MR"}
, "else":
[ ["./", "serve-service", "TESTS"]
, ["./", "computed-roots", "TESTS"]
, ["./", "tree-structure", "TESTS"]
, ["./", "symlinks", "TESTS"]
]
}
]
}
}
, "remote tests":
{ "type": "configure"
, "tainted": ["test"]
, "target": "remote tests (unconfigured)"
, "config":
{ "type": "'"
, "$1":
{ "TEST_MATRIX":
{ "TEST_COMAPTIBLE_REMOTE":
{"remote-compat": true, "remote-native": "false"}
}
}
}
}
, "just-mr tests (unconfigured)":
{ "type": ["@", "rules", "test", "suite"]
, "arguments_config": ["TEST_BOOTSTRAP_JUST_MR"]
, "deps":
{ "type": "`"
, "$1":
[ "remote tests"
, ["./", "built-in-rules", "TESTS"]
, ["./", "cli", "TESTS"]
, ["./", "just-lock", "TESTS"]
, ["./", "target-cache", "TESTS"]
, ["./", "gc", "TESTS"]
, ["./", "git-import", "TESTS"]
, { "type": ",@"
, "$1":
{ "type": "if"
, "cond": {"type": "var", "name": "TEST_BOOTSTRAP_JUST_MR"}
, "else": [["./", "profile", "TESTS"]]
}
}
]
}
}
, "just-mr tests (matrix)":
{ "type": ["@", "rules", "test", "matrix"]
, "deps": ["just-mr tests (unconfigured)"]
}
, "just-mr tests":
{ "type": "configure"
, "tainted": ["test"]
, "target": "just-mr tests (matrix)"
, "config":
{ "type": "'"
, "$1":
{ "TEST_MATRIX":
{ "TEST_BOOTSTRAP_JUST_MR":
{"just-mr-bootstrap": true, "just-mr-native": false}
}
}
}
}
, "TESTS":
{ "type": ["@", "rules", "test", "suite"]
, "arguments_config": ["TEST_BOOTSTRAP_JUST_MR"]
, "stage": ["end-to-end"]
, "deps":
{ "type": "`"
, "$1":
[ "just-mr tests"
, ["./", "actions", "TESTS"]
, ["./", "build-fails", "TESTS"]
, ["./", "execution-service", "TESTS"]
, ["./", "generated-binary", "TESTS"]
, ["./", "target-tests", "TESTS"]
, ["./", "user-errors", "TESTS"]
]
}
}
}
|