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
|
{ "chained-import":
{ "type": ["@", "rules", "shell/test", "script"]
, "name": ["chained-import"]
, "test": ["chained-import.sh"]
, "deps":
[ ["", "mr-tool-under-test"]
, ["", "tool-under-test"]
, ["end-to-end", "git-import-under-test"]
]
}
, "deduplicate":
{ "type": ["@", "rules", "shell/test", "script"]
, "name": ["deduplicate"]
, "test": ["deduplicate.sh"]
, "deps":
[ ["", "mr-tool-under-test"]
, ["", "tool-under-test"]
, ["end-to-end", "deduplicate-tool-under-test"]
, ["end-to-end", "git-import-under-test"]
]
, "keep":
["repos-full.json", "actions-full.json", "repos.json", "actions.json"]
}
, "annotations":
{ "type": ["@", "rules", "shell/test", "script"]
, "name": ["annotations"]
, "test": ["annotations.sh"]
, "deps":
[ ["", "mr-tool-under-test"]
, ["", "tool-under-test"]
, ["end-to-end", "git-import-under-test"]
]
, "keep": ["repos.json"]
}
, "absent":
{ "type": ["@", "rules", "shell/test", "script"]
, "name": ["absent"]
, "test": ["absent.sh"]
, "deps":
[ ["end-to-end", "deduplicate-tool-under-test"]
, ["end-to-end", "git-import-under-test"]
]
, "keep": ["repos.json", "deduplicated.json"]
}
, "computed":
{ "type": ["@", "rules", "shell/test", "script"]
, "name": ["computed"]
, "test": ["computed.sh"]
, "deps":
[ ["", "mr-tool-under-test"]
, ["", "tool-under-test"]
, ["end-to-end", "deduplicate-tool-under-test"]
, ["end-to-end", "git-import-under-test"]
]
, "keep":
["repos-full.json", "actions-full.json", "repos.json", "actions.json"]
}
, "tree_structure":
{ "type": ["@", "rules", "shell/test", "script"]
, "name": ["tree_structure"]
, "test": ["tree_structure.sh"]
, "deps":
[ ["", "mr-tool-under-test"]
, ["", "tool-under-test"]
, ["end-to-end", "deduplicate-tool-under-test"]
, ["end-to-end", "git-import-under-test"]
]
}
, "indirections":
{ "type": ["@", "rules", "shell/test", "script"]
, "name": ["indirections"]
, "test": ["indirections.sh"]
, "deps":
[ ["", "mr-tool-under-test"]
, ["", "tool-under-test"]
, ["end-to-end", "git-import-under-test"]
]
}
, "TESTS":
{ "type": ["@", "rules", "test", "suite"]
, "arguments_config": ["TEST_BOOTSTRAP_JUST_MR"]
, "stage": ["git-import"]
, "deps":
{ "type": "++"
, "$1":
[ ["deduplicate", "absent"]
, { "type": "if"
, "cond": {"type": "var", "name": "TEST_BOOTSTRAP_JUST_MR"}
, "then": []
, "else":
[ "chained-import"
, "annotations"
, "computed"
, "indirections"
, "tree_structure"
]
}
]
}
}
}
|