mirror of
https://github.com/crazywhalecc/static-php-cli.git
synced 2026-07-09 01:45:36 +08:00
Add missing ext source when downloading pre-built grpc (#652)
* Add missing ext source when downloading pre-built grpc * Add tests
This commit is contained in:
@@ -13,8 +13,8 @@ declare(strict_types=1);
|
||||
|
||||
// test php version
|
||||
$test_php_version = [
|
||||
'8.1',
|
||||
'8.2',
|
||||
// '8.1',
|
||||
// '8.2',
|
||||
'8.3',
|
||||
'8.4',
|
||||
];
|
||||
@@ -36,11 +36,11 @@ $no_strip = false;
|
||||
$upx = false;
|
||||
|
||||
// prefer downloading pre-built packages to speed up the build process
|
||||
$prefer_pre_built = false;
|
||||
$prefer_pre_built = true;
|
||||
|
||||
// If you want to test your added extensions and libs, add below (comma separated, example `bcmath,openssl`).
|
||||
$extensions = match (PHP_OS_FAMILY) {
|
||||
'Linux', 'Darwin' => 'gettext',
|
||||
'Linux', 'Darwin' => 'grpc',
|
||||
'Windows' => 'bcmath',
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user