forked from facebookarchive/oss-performance
-
Notifications
You must be signed in to change notification settings - Fork 0
/
batch-run.json.example
51 lines (51 loc) · 1.05 KB
/
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
{
"runtimes": {
"HHVM 3.1 (2014-05-27)": {
"type": "hhvm",
"bin": "hhvm-3.1.0"
},
"HHVM 3.4 (2014-11-14)": {
"type": "hhvm",
"bin": "hhvm-3.4.0"
},
"HHVM 3.5 (2015-01-16)": {
"type": "hhvm",
"bin": "hhvm-3.5.0"
},
"PHP7 (*)": {
"type": "php-src",
"bin": "php7-cgi-2015-01-14"
},
"PHP 5.6.5 (2015-01-22)": {
"type": "php-src",
"bin": "php-cgi-5.6.5"
}
},
"targets": [
"wordpress",
"drupal7",
"mediawiki",
"magento1",
"sugarcrm-login-page",
"sugarcrm-home-page"
],
"runtime-overrides": {
"sugarcrm-home-page": {
"__comment": [
"Recent versions of PHP7 segfault in clean_non_persistent_constants()"
],
"PHP7 (*)": {
"bin": "php7-cgi-2014-08-15"
}
},
"magento1": {
"__comment": [
"Recent versions of PHP7 can not run Magento1 because of",
"https://wiki.php.net/rfc/uniform_variable_syntax"
],
"PHP7 (*)": {
"bin": "php7-cgi-2014-08-15"
}
}
}
}