1
0
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:
Petr Sumbera
2025-12-12 07:21:39 -05:00
committed by Ilija Tovilo
parent 7a1c2612c0
commit ce1cadba29
89 changed files with 611 additions and 372 deletions

View File

@@ -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
};