mirror of
https://github.com/php/php-src.git
synced 2026-03-24 00:02:20 +01:00
Fix Solaris tests and add nightly CI job
Closes GH-20709
This commit is contained in:
committed by
Ilija Tovilo
parent
7a1c2612c0
commit
ce1cadba29
@@ -27,7 +27,9 @@ $expectedMaxSize = match(php_uname('s')) {
|
||||
'true' => 16*1024*1024, // https://github.com/actions/runner-images/pull/3328
|
||||
default => 8*1024*1024,
|
||||
},
|
||||
'SunOS' => 10 * 1024 * 1024,
|
||||
'SunOS' => preg_match('/(omnios|illumos|smartos|oi-|openindiana|joyent)/i', php_uname('v'))
|
||||
? 10 * 1024 * 1024
|
||||
: 8 * 1024 * 1024,
|
||||
'Windows NT' => 67108864 - 4*4096, // Set by sapi/cli/config.w32
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user