mirror of
https://github.com/crazywhalecc/static-php-cli.git
synced 2026-07-06 00:05:42 +08:00
Merge pull request #583 from Halleck45/support_ast_extension
Support AST extension
This commit is contained in:
committed by
GitHub
parent
a3e0ad6b9f
commit
20dad4cdb3
@@ -24,6 +24,7 @@ $test_os = [
|
||||
'macos-14',
|
||||
// 'macos-13',
|
||||
'ubuntu-latest',
|
||||
'windows-latest',
|
||||
];
|
||||
|
||||
// whether enable thread safe
|
||||
@@ -39,8 +40,8 @@ $prefer_pre_built = false;
|
||||
|
||||
// If you want to test your added extensions and libs, add below (comma separated, example `bcmath,openssl`).
|
||||
$extensions = match (PHP_OS_FAMILY) {
|
||||
'Linux', 'Darwin' => 'openssl',
|
||||
'Windows' => 'openssl',
|
||||
'Linux', 'Darwin' => 'ast',
|
||||
'Windows' => 'ast',
|
||||
};
|
||||
|
||||
// If you want to test lib-suggests feature with extension, add them below (comma separated, example `libwebp,libavif`).
|
||||
|
||||
Reference in New Issue
Block a user