forked from facebookarchive/oss-performance
-
Notifications
You must be signed in to change notification settings - Fork 0
/
batch-run.json.example
53 lines (53 loc) · 975 Bytes
/
batch-run.json.example
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
{
"runtimes": {
"HHVM 3.18": {
"type": "hhvm",
"bin": "hhvm"
},
"HHVM 3.18 (norepo auth)": {
"type": "hhvm",
"bin": "hhvm",
"args": [
"--no-repo-auth",
"--i-am-not-benchmarking"
]
},
"PHP7 FPM": {
"type": "php-fpm",
"bin": "php-fpm7.0"
},
"PHP7 CGI": {
"type": "php-src",
"bin": "php-cgi7.0"
}
},
"targets": [
"wordpress",
"drupal7",
"drupal8-no-cache",
"mediawiki",
"magento1"
],
"runtime-overrides": {
"magento1": {
"__comment": [
"Recent versions of PHP7 can not run Magento1 because of",
"https://wiki.php.net/rfc/uniform_variable_syntax"
],
"PHP7 FPM": {
"skip": true
},
"PHP7 CGI": {
"skip": true
}
}
},
"settings": {
"username": "root",
"password": "root",
"options": [
"cpu-fraction=0.5",
"i-am-not-benchmarking"
]
}
}