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
|
{ "chained-import":
{ "type": ["@", "rules", "shell/test", "script"]
, "name": ["chained-import"]
, "test": ["chained-import.sh"]
, "deps":
[ ["end-to-end", "git-import-under-test"]
, ["", "mr-tool-under-test"]
, ["", "tool-under-test"]
]
}
, "check-action-equality":
{ "type": "install"
, "tainted": ["test"]
, "files": {"bin/actions-graph-equal": "check-action-equality.py"}
}
, "deduplicate":
{ "type": ["@", "rules", "shell/test", "script"]
, "name": ["deduplicate"]
, "test": ["deduplicate.sh"]
, "deps":
[ ["end-to-end", "git-import-under-test"]
, ["end-to-end", "deduplicate-tool-under-test"]
, ["", "mr-tool-under-test"]
, ["", "tool-under-test"]
, "check-action-equality"
]
, "keep":
["repos-full.json", "actions-full.json", "repos.json", "actions.json"]
}
, "annotations":
{ "type": ["@", "rules", "shell/test", "script"]
, "name": ["annotations"]
, "test": ["annotations.sh"]
, "deps":
[ ["end-to-end", "git-import-under-test"]
, ["", "mr-tool-under-test"]
, ["", "tool-under-test"]
]
, "keep": ["repos.json"]
}
, "absent":
{ "type": ["@", "rules", "shell/test", "script"]
, "name": ["absent"]
, "test": ["absent.sh"]
, "deps":
[ ["end-to-end", "git-import-under-test"]
, ["end-to-end", "deduplicate-tool-under-test"]
]
, "keep": ["repos.json", "deduplicated.json"]
}
, "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", "deduplicate", "annotations"]
}
]
}
}
}
|