setup-php/src/install.ts

80 lines
2.5 KiB
TypeScript
Raw Normal View History

2021-03-03 11:58:50 +07:00
import {exec} from '@actions/exec';
2019-09-20 09:41:20 +07:00
import * as core from '@actions/core';
2019-10-08 19:42:54 +07:00
import * as config from './config';
import * as coverage from './coverage';
2019-10-27 07:12:49 +07:00
import * as extensions from './extensions';
2019-12-27 08:26:49 +07:00
import * as tools from './tools';
2019-10-27 07:12:49 +07:00
import * as utils from './utils';
2019-09-06 06:47:43 +07:00
2019-10-17 03:11:13 +07:00
/**
* Build the script
*
* @param filename
* @param version
* @param os_version
*/
2020-10-04 18:33:02 +07:00
export async function getScript(
2019-10-27 07:12:49 +07:00
filename: string,
version: string,
os_version: string
): Promise<string> {
const url = 'https://setup-php.com/sponsor';
2019-10-17 03:11:13 +07:00
// taking inputs
2020-11-08 14:36:21 +07:00
process.env['fail_fast'] = await utils.getInput('fail-fast', false);
2020-10-04 18:33:02 +07:00
const extension_csv: string = await utils.getInput('extensions', false);
2020-02-17 04:05:18 +07:00
const ini_values_csv: string = await utils.getInput('ini-values', false);
2019-11-24 03:34:12 +07:00
const coverage_driver: string = await utils.getInput('coverage', false);
2020-12-17 13:43:39 +07:00
const tools_csv: string = await utils.getInput('tools', false);
2019-10-17 03:11:13 +07:00
let script: string = await utils.readFile(filename, 'src/scripts');
script += await tools.addTools(tools_csv, version, os_version);
2019-10-17 03:11:13 +07:00
if (extension_csv) {
script += await extensions.addExtension(extension_csv, version, os_version);
}
if (coverage_driver) {
script += await coverage.addCoverage(coverage_driver, version, os_version);
}
2020-07-08 09:15:11 +07:00
if (ini_values_csv) {
script += await config.addINIValues(ini_values_csv, os_version);
}
script += '\n' + (await utils.stepLog(`Sponsor setup-php`, os_version));
script += '\n' + (await utils.addLog('$tick', 'setup-php', url, os_version));
2020-09-07 03:13:15 +07:00
2019-10-27 07:12:49 +07:00
return await utils.writeScript(filename, script);
2019-10-17 03:11:13 +07:00
}
2019-09-20 09:41:20 +07:00
/**
* Run the script
*/
2019-11-24 03:34:12 +07:00
export async function run(): Promise<void> {
2019-09-06 06:47:43 +07:00
try {
2021-05-05 01:13:26 +07:00
if ((await utils.readEnv('ImageOS')) == 'ubuntu16') {
2021-08-03 00:40:43 +07:00
core.setFailed(
'setup-php is not supported on Ubuntu 16.04. Please upgrade to Ubuntu 18.04 or Ubuntu 20.04 - https://setup-php.com/i/452'
2021-05-05 01:13:26 +07:00
);
2021-08-03 00:40:43 +07:00
return;
2021-05-05 01:13:26 +07:00
}
2020-10-02 16:21:40 +07:00
const version: string = await utils.parseVersion(
await utils.getInput('php-version', true)
);
if (version) {
const os_version: string = process.platform;
const tool = await utils.scriptTool(os_version);
const script = os_version + (await utils.scriptExtension(os_version));
const location = await getScript(script, version, os_version);
await exec(await utils.joins(tool, location, version, __dirname));
} else {
core.setFailed('Unable to get the PHP version');
}
2019-10-17 03:11:13 +07:00
} catch (error) {
core.setFailed((error as Error).message);
2019-09-06 06:47:43 +07:00
}
}
2019-09-07 19:31:50 +07:00
// call the run function
2021-03-03 11:58:50 +07:00
(async () => {
await run();
})().catch(error => {
core.setFailed(error.message);
});