crazy test

This commit is contained in:
DubbleClick 2025-06-27 22:06:19 +07:00
parent 464c2dca85
commit 96babd0939

View File

@ -35,10 +35,11 @@ $test_os = [
$zig = true; $zig = true;
// temporary! // temporary!
if ($zig) { if ($zig) {
putenv('SPC_LIBC=glibc'); putenv('SPC_LIBC=musl');
putenv('SPC_LIBC_VERSION=2.17'); // putenv('SPC_LIBC_VERSION=2.17');
putenv('CC=zig-cc'); putenv('CC=zig-cc');
putenv('CXX=zig-c++'); putenv('CXX=zig-c++');
exec('ulimit -n 2048');
} }
// whether enable thread safe // whether enable thread safe
@ -57,7 +58,7 @@ $prefer_pre_built = true;
// If you want to test your added extensions and libs, add below (comma separated, example `bcmath,openssl`). // If you want to test your added extensions and libs, add below (comma separated, example `bcmath,openssl`).
$extensions = match (PHP_OS_FAMILY) { $extensions = match (PHP_OS_FAMILY) {
'Linux', 'Darwin' => 'apcu,ast,bcmath,calendar,ctype,curl,dba,dom,exif,fileinfo,filter,iconv,libxml,mbregex,mbstring,opcache,openssl,pcntl,phar,posix,readline,session,simplexml,sockets,sodium,tokenizer,xml,xmlreader,xmlwriter,zip,zlib', 'Linux', 'Darwin' => 'apcu,ast,bcmath,calendar,ctype,curl,dba,dom,exif,fileinfo,filter,iconv,libxml,mbregex,mbstring,opcache,openssl,pcntl,phar,posix,readline,session,simplexml,sockets,sodium,tokenizer,xml,xmlreader,xmlwriter,zip,zlib,amqp,brotli,bz2,dio,ds,ev,event,ffi,ftp,gd,gettext,gmp,gmssl,igbinary,imagick,inotify,intl,ldap,lz4,memcache,memcached,mongodb,msgpack,mysqli,mysqlnd,odbc,opentelemetry,parallel,pdo,pdo_mysql,pdo_odbc,pdo_pgsql,pdo_sqlite,pdo_sqlsrv,pgsql,protobuf,rar,redis,rdkafka,shmop,spx,sqlite3,sqlsrv,ssh2,swoole,sysvmsg,sysvsem,sysvshm,tidy,uuid,uv,xhprof,xlswriter,xsl,xz,yac,yaml,zstd',
'Windows' => 'intl', 'Windows' => 'intl',
}; };