mirror of
https://github.com/shivammathur/setup-php.git
synced 2024-11-23 04:11:06 +07:00
Use ppa:ondrej/php for phalcon except for PHP7.4
This commit is contained in:
parent
8489dbf4de
commit
b44e5e009f
@ -41,22 +41,10 @@ describe('Extension tests', () => {
|
|||||||
linux = await extensions.addExtension('gearman', '7.1', 'linux');
|
linux = await extensions.addExtension('gearman', '7.1', 'linux');
|
||||||
expect(linux).toContain('gearman.sh 7.1');
|
expect(linux).toContain('gearman.sh 7.1');
|
||||||
|
|
||||||
linux = await extensions.addExtension(
|
linux = await extensions.addExtension('gearman', '7.2', 'linux');
|
||||||
'phalcon3, phalcon4, gearman',
|
|
||||||
'7.2',
|
|
||||||
'linux'
|
|
||||||
);
|
|
||||||
expect(linux).toContain('phalcon.sh phalcon3 7.2');
|
|
||||||
expect(linux).toContain('phalcon.sh phalcon4 7.2');
|
|
||||||
expect(linux).toContain('gearman.sh 7.2');
|
expect(linux).toContain('gearman.sh 7.2');
|
||||||
|
|
||||||
linux = await extensions.addExtension(
|
linux = await extensions.addExtension('gearman', '7.3', 'linux');
|
||||||
'phalcon3, phalcon4, gearman',
|
|
||||||
'7.3',
|
|
||||||
'linux'
|
|
||||||
);
|
|
||||||
expect(linux).toContain('phalcon.sh phalcon3 7.3');
|
|
||||||
expect(linux).toContain('phalcon.sh phalcon4 7.3');
|
|
||||||
expect(linux).toContain('gearman.sh 7.3');
|
expect(linux).toContain('gearman.sh 7.3');
|
||||||
|
|
||||||
linux = await extensions.addExtension('phalcon4, gearman', '7.4', 'linux');
|
linux = await extensions.addExtension('phalcon4, gearman', '7.4', 'linux');
|
||||||
|
4
dist/index.js
vendored
4
dist/index.js
vendored
@ -2676,8 +2676,8 @@ function addExtensionLinux(extension_csv, version, pipe) {
|
|||||||
'\n' +
|
'\n' +
|
||||||
(yield utils.addLog('$tick', 'xdebug', 'Enabled', 'linux'));
|
(yield utils.addLog('$tick', 'xdebug', 'Enabled', 'linux'));
|
||||||
return;
|
return;
|
||||||
// match 7.0phalcon3..7.3phalcon3 and 7.2phalcon4...7.4phalcon4
|
// match 7.4phalcon4
|
||||||
case /^7\.[0-3]phalcon3$|^7\.[2-4]phalcon4$/.test(version_extension):
|
case /^7.4phalcon4$/.test(version_extension):
|
||||||
script +=
|
script +=
|
||||||
'\nsh ' +
|
'\nsh ' +
|
||||||
path.join(__dirname, '../src/scripts/ext/phalcon.sh') +
|
path.join(__dirname, '../src/scripts/ext/phalcon.sh') +
|
||||||
|
@ -129,8 +129,8 @@ export async function addExtensionLinux(
|
|||||||
'\n' +
|
'\n' +
|
||||||
(await utils.addLog('$tick', 'xdebug', 'Enabled', 'linux'));
|
(await utils.addLog('$tick', 'xdebug', 'Enabled', 'linux'));
|
||||||
return;
|
return;
|
||||||
// match 7.0phalcon3..7.3phalcon3 and 7.2phalcon4...7.4phalcon4
|
// match 7.4phalcon4
|
||||||
case /^7\.[0-3]phalcon3$|^7\.[2-4]phalcon4$/.test(version_extension):
|
case /^7.4phalcon4$/.test(version_extension):
|
||||||
script +=
|
script +=
|
||||||
'\nsh ' +
|
'\nsh ' +
|
||||||
path.join(__dirname, '../src/scripts/ext/phalcon.sh') +
|
path.join(__dirname, '../src/scripts/ext/phalcon.sh') +
|
||||||
|
Loading…
Reference in New Issue
Block a user