mirror of
https://github.com/shivammathur/setup-php.git
synced 2024-11-23 04:11:06 +07:00
Use shivammathur/extensions tap for grpc, swoole, protobuf on macos
This commit is contained in:
parent
6158538131
commit
d01ec214f2
@ -114,12 +114,15 @@ describe('Extension tests', () => {
|
|||||||
|
|
||||||
it('checking addExtensionOnDarwin', async () => {
|
it('checking addExtensionOnDarwin', async () => {
|
||||||
let darwin: string = await extensions.addExtension(
|
let darwin: string = await extensions.addExtension(
|
||||||
'Xdebug, pcov, sqlite, :intl, ast-beta, grpc-1.2.3',
|
'Xdebug, pcov, grpc, protobuf, swoole, sqlite, :intl, ast-beta, grpc-1.2.3',
|
||||||
'7.2',
|
'7.2',
|
||||||
'darwin'
|
'darwin'
|
||||||
);
|
);
|
||||||
expect(darwin).toContain('add_brew_extension xdebug');
|
expect(darwin).toContain('add_brew_extension xdebug');
|
||||||
expect(darwin).toContain('add_brew_extension pcov');
|
expect(darwin).toContain('add_brew_extension pcov');
|
||||||
|
expect(darwin).toContain('add_brew_extension grpc');
|
||||||
|
expect(darwin).toContain('add_brew_extension protobuf');
|
||||||
|
expect(darwin).toContain('add_brew_extension swoole');
|
||||||
expect(darwin).toContain('sudo pecl install -f sqlite3');
|
expect(darwin).toContain('sudo pecl install -f sqlite3');
|
||||||
expect(darwin).toContain('remove_extension intl');
|
expect(darwin).toContain('remove_extension intl');
|
||||||
expect(darwin).toContain('add_unstable_extension ast beta extension');
|
expect(darwin).toContain('add_unstable_extension ast beta extension');
|
||||||
|
12
dist/index.js
vendored
12
dist/index.js
vendored
@ -2776,13 +2776,13 @@ async function addExtensionDarwin(extension_csv, version, pipe) {
|
|||||||
command =
|
command =
|
||||||
command_prefix + 'xdebug-' + (await getXdebugVersion(version));
|
command_prefix + 'xdebug-' + (await getXdebugVersion(version));
|
||||||
break;
|
break;
|
||||||
// match 5.6xdebug, 7.0xdebug...7.4xdebug, 8.0xdebug
|
// match 5.6xdebug to 8.0xdebug, 5.6swoole to 8.0swoole
|
||||||
case /(5\.6|7\.[0-4]|8\.[0-9])xdebug/.test(version_extension):
|
// match 5.6grpc to 7.4grpc, 5.6protobuf to 7.4protobuf
|
||||||
command = 'add_brew_extension xdebug';
|
// match 7.1pcov to 8.0pcov
|
||||||
break;
|
case /(5\.6|7\.[0-4]|8\.[0-9])(xdebug|swoole)/.test(version_extension):
|
||||||
// match 7.1pcov...7.4pcov, 8.0pcov
|
case /(5\.6|7\.[0-4])(grpc|protobuf)/.test(version_extension):
|
||||||
case /(7\.[1-4]|8\.[0-9])pcov/.test(version_extension):
|
case /(7\.[1-4]|8\.[0-9])pcov/.test(version_extension):
|
||||||
command = 'add_brew_extension pcov';
|
command = 'add_brew_extension ' + ext_name;
|
||||||
break;
|
break;
|
||||||
// match 5.6redis
|
// match 5.6redis
|
||||||
case /5\.6redis/.test(version_extension):
|
case /5\.6redis/.test(version_extension):
|
||||||
|
@ -83,13 +83,13 @@ export async function addExtensionDarwin(
|
|||||||
command =
|
command =
|
||||||
command_prefix + 'xdebug-' + (await getXdebugVersion(version));
|
command_prefix + 'xdebug-' + (await getXdebugVersion(version));
|
||||||
break;
|
break;
|
||||||
// match 5.6xdebug, 7.0xdebug...7.4xdebug, 8.0xdebug
|
// match 5.6xdebug to 8.0xdebug, 5.6swoole to 8.0swoole
|
||||||
case /(5\.6|7\.[0-4]|8\.[0-9])xdebug/.test(version_extension):
|
// match 5.6grpc to 7.4grpc, 5.6protobuf to 7.4protobuf
|
||||||
command = 'add_brew_extension xdebug';
|
// match 7.1pcov to 8.0pcov
|
||||||
break;
|
case /(5\.6|7\.[0-4]|8\.[0-9])(xdebug|swoole)/.test(version_extension):
|
||||||
// match 7.1pcov...7.4pcov, 8.0pcov
|
case /(5\.6|7\.[0-4])(grpc|protobuf)/.test(version_extension):
|
||||||
case /(7\.[1-4]|8\.[0-9])pcov/.test(version_extension):
|
case /(7\.[1-4]|8\.[0-9])pcov/.test(version_extension):
|
||||||
command = 'add_brew_extension pcov';
|
command = 'add_brew_extension ' + ext_name;
|
||||||
break;
|
break;
|
||||||
// match 5.6redis
|
// match 5.6redis
|
||||||
case /5\.6redis/.test(version_extension):
|
case /5\.6redis/.test(version_extension):
|
||||||
|
Loading…
Reference in New Issue
Block a user