-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathconfig1.json
128 lines (121 loc) · 4.27 KB
/
config1.json
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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"mozsearch_path": "$MOZSEARCH_PATH",
"config_repo": "$CONFIG_REPO",
"default_tree": "mozilla-central",
"instance_type": "t3.2xlarge",
"trees": {
"nss": {
"priority": 10,
"on_error": "continue",
"cache": "codesearch",
"index_path": "$WORKING/nss",
"files_path": "$WORKING/nss/git",
"git_path": "$WORKING/nss/git",
"git_blame_path": "$WORKING/nss/blame",
"github_repo": "https://github.com/nss-dev/nss",
"hg_root": "https://hg.mozilla.org/projects/nss",
"objdir_path": "$WORKING/nss/dist",
"codesearch_path": "$WORKING/nss/livegrep.idx",
"codesearch_port": 8081,
"scip_subtrees": {}
},
"mozilla-central": {
"priority": 1000,
"on_error": "halt",
"cache": "everything",
"index_path": "$WORKING/mozilla-central",
"files_path": "$WORKING/mozilla-central/git",
"git_path": "$WORKING/mozilla-central/git",
"git_blame_path": "$WORKING/mozilla-central/blame",
"github_repo": "https://github.com/mozilla/gecko-dev",
"hg_root": "https://hg.mozilla.org/mozilla-central",
"ccov_root": "https://coverage.moz.tools/",
"wpt_root": "testing/web-platform",
"objdir_path": "$WORKING/mozilla-central/objdir",
"codesearch_path": "$WORKING/mozilla-central/livegrep.idx",
"codesearch_port": 8082,
"scip_subtrees": {
"python": {
"scip_index_path": "$WORKING/mozilla-central/python.scip",
"subtree_root": ""
}
}
},
"comm-central": {
"priority": 5,
"on_error": "continue",
"cache": "codesearch",
"index_path": "$WORKING/comm-central",
"files_path": "$WORKING/comm-central/git",
"git_path": "$WORKING/comm-central/git",
"git_blame_path": "$WORKING/comm-central/blame",
"github_repo": "https://github.com/mozilla/releases-comm-central",
"hg_root": "https://hg.mozilla.org/comm-central",
"objdir_path": "$WORKING/comm-central/objdir",
"codesearch_path": "$WORKING/comm-central/livegrep.idx",
"codesearch_port": 8083,
"scip_subtrees": {}
},
"mozilla-mobile": {
"priority": 20,
"on_error": "continue",
"cache": "codesearch",
"index_path": "$WORKING/mozilla-mobile",
"files_path": "$WORKING/mozilla-mobile/git",
"git_path": "$WORKING/mozilla-mobile/git",
"objdir_path": "$WORKING/mozilla-mobile/objdir",
"codesearch_path": "$WORKING/mozilla-mobile/livegrep.idx",
"codesearch_port": 8084,
"scip_subtrees": {}
},
"mozsearch": {
"priority": 600,
"on_error": "continue",
"cache": "codesearch",
"index_path": "$WORKING/mozsearch",
"files_path": "$WORKING/mozsearch/git",
"git_path": "$WORKING/mozsearch/git",
"git_blame_path": "$WORKING/mozsearch/blame",
"github_repo": "https://github.com/mozsearch/mozsearch",
"objdir_path": "$WORKING/mozsearch/objdir",
"codesearch_path": "$WORKING/mozsearch/livegrep.idx",
"codesearch_port": 8085,
"scip_subtrees": {
"python": {
"scip_index_path": "$WORKING/mozsearch/python.scip",
"subtree_root": ""
},
"rust": {
"scip_index_path": "$WORKING/mozsearch/rust.scip",
"subtree_root": "tools"
}
}
},
"mozsearch-mozilla": {
"priority": 500,
"on_error": "continue",
"cache": "codesearch",
"index_path": "$WORKING/mozsearch-mozilla",
"files_path": "$WORKING/mozsearch-mozilla/git",
"git_path": "$WORKING/mozsearch-mozilla/git",
"git_blame_path": "$WORKING/mozsearch-mozilla/blame",
"github_repo": "https://github.com/mozsearch/mozsearch-mozilla",
"objdir_path": "$WORKING/mozsearch-mozilla/objdir",
"codesearch_path": "$WORKING/mozsearch-mozilla/livegrep.idx",
"codesearch_port": 8086,
"scip_subtrees": {}
},
"mozsearch-tests": {
"priority": 550,
"on_error": "halt",
"cache": "everything",
"index_path": "$WORKING/mozsearch-tests",
"files_path": "$WORKING/mozsearch-tests/files",
"objdir_path": "$WORKING/mozsearch-tests/objdir",
"wpt_root": "testing/web-platform",
"codesearch_path": "$WORKING/mozsearch-tests/livegrep.idx",
"codesearch_port": 8087,
"scip_subtrees": {}
}
}
}