-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbots.json
137 lines (137 loc) · 4.75 KB
/
bots.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
129
130
131
132
133
134
135
136
137
{
"linux": {
"build_steps": [
{
"name": "Build Wabt",
"command": ["waterfall/src/build.py", "--no-sync", "--no-test", "--build-include=wabt"]
},
{
"name": "Build Binaryen",
"command": ["waterfall/src/build.py", "--no-sync", "--no-test", "--build-include=binaryen"]
},
{
"name": "Build V8",
"command": ["waterfall/src/build.py", "--no-sync", "--no-test", "--build-include=v8"]
},
{
"name": "Build LLVM",
"command": ["waterfall/src/build.py", "--no-sync", "--no-test", "--build-include=llvm", "--no-tool-tests"]
},
{
"name": "Build fastcomp",
"command": ["waterfall/src/build.py", "--no-sync", "--no-test", "--build-include=fastcomp"]
},
{
"name": "Build Emscripten",
"command": ["waterfall/src/build.py", "--no-sync", "--no-test", "--build-include=emscripten"]
}
],
"test_steps": [
{
"name": "Emscripten testsuite (upstream, wasm0)",
"command": ["waterfall/src/build.py", "--no-sync", "--no-build",
"--test-include=emtest", "--test-param=wasm0"]
},
{
"name": "Emscripten testsuite (upstream, wasm3)",
"command": ["waterfall/src/build.py", "--no-sync", "--no-build",
"--test-include=emtest", "--test-param=wasm3"]
},
{
"name": "Emscripten testsuite (upstream, other)",
"command": ["waterfall/src/build.py", "--no-sync", "--no-build",
"--test-include=emtest", "--test-param=other"]
},
{
"name": "Emscripten testsuite (asm2wasm, wasm2)",
"command": ["waterfall/src/build.py", "--no-sync", "--no-build",
"--test-include=emtest-asm", "--test-param=wasm2"]
},
{
"name": "Emscripten testsuite (asm2wasm, other)",
"command": ["waterfall/src/build.py", "--no-sync", "--no-build",
"--test-include=emtest-asm", "--test-param=other"]
}
]
},
"mac": {
"build_steps": [
{
"name": "Build Wabt",
"command": ["waterfall/src/build.py", "--no-sync", "--no-test", "--build-include=wabt"]
},
{
"name": "Build Binaryen",
"command": ["waterfall/src/build.py", "--no-sync", "--no-test", "--build-include=binaryen"]
},
{
"name": "Build V8",
"command": ["waterfall/src/build.py", "--no-sync", "--no-test", "--build-include=v8"]
},
{
"name": "Build LLVM",
"command": ["waterfall/src/build.py", "--no-sync", "--no-test", "--build-include=llvm", "--no-tool-tests"]
},
{
"name": "Build fastcomp",
"command": ["waterfall/src/build.py", "--no-sync", "--no-test", "--build-include=fastcomp"]
},
{
"name": "Build Emscripten",
"command": ["waterfall/src/build.py", "--no-sync", "--no-test", "--build-include=emscripten"]
}
],
"test_steps": [
{
"name": "Emscripten testsuite (upstream, wasms)",
"command": ["waterfall/src/build.py", "--no-sync", "--no-build",
"--test-include=emtest", "--test-param=wasms"]
},
{
"name": "Emscripten testsuite (upstream, other)",
"command": ["waterfall/src/build.py", "--no-sync", "--no-build",
"--test-include=emtest", "--test-param=other"]
}
]
},
"win": {
"build_steps": [
{
"name": "Build Wabt",
"command": ["waterfall/src/build.py", "--no-sync", "--no-test", "--build-include=wabt"]
},
{
"name": "Build Binaryen",
"command": ["waterfall/src/build.py", "--no-sync", "--no-test", "--build-include=binaryen"]
},
{
"name": "Build V8",
"command": ["waterfall/src/build.py", "--no-sync", "--no-test", "--build-include=v8"]
},
{
"name": "Build LLVM",
"command": ["waterfall/src/build.py", "--no-sync", "--no-test", "--build-include=llvm", "--no-tool-tests"]
},
{
"name": "Build fastcomp",
"command": ["waterfall/src/build.py", "--no-sync", "--no-test", "--build-include=fastcomp"]
},
{
"name": "Build Emscripten",
"command": ["waterfall/src/build.py", "--no-sync", "--no-test", "--build-include=emscripten"]
}
],
"test_steps": [
{
"name": "Emscripten testsuite (upstream, wasm2)",
"command": ["waterfall/src/build.py", "--no-sync", "--no-build",
"--test-include=emtest", "--test-param=wasm2"]
},
{
"name": "Emscripten testsuite (upstream, other)",
"command": ["waterfall/src/build.py", "--no-sync", "--no-build",
"--test-include=emtest", "--test-param=other"]
}
]
}
}