npmci/ts/npmci.bash.ts

100 lines
2.9 KiB
TypeScript
Raw Normal View History

2018-04-04 20:25:13 +00:00
import * as plugins from './npmci.plugins';
import * as paths from './npmci.paths';
2017-03-11 13:07:36 +00:00
2018-04-04 20:25:13 +00:00
import * as smartq from 'smartq';
2016-06-07 01:57:43 +00:00
2017-03-11 00:10:37 +00:00
/**
* wether nvm is available or not
*/
2018-04-04 20:25:13 +00:00
export let nvmAvailable = smartq.defer<boolean>();
2017-03-11 00:10:37 +00:00
/**
* the smartshell instance for npmci
*/
let npmciSmartshell = new plugins.smartshell.Smartshell({
executor: 'bash',
sourceFilePaths: []
2018-04-04 20:25:13 +00:00
});
2017-03-11 00:10:37 +00:00
2017-03-11 13:07:36 +00:00
/**
* check for tools.
*/
let checkToolsAvailable = async () => {
// check for nvm
2017-04-02 21:41:51 +00:00
if (!process.env.NPMTS_TEST) {
if (
(await plugins.smartshell.execSilent(`bash -c "source /usr/local/nvm/nvm.sh"`)).exitCode === 0
) {
2018-04-04 20:25:13 +00:00
npmciSmartshell.addSourceFiles([`/usr/local/nvm/nvm.sh`]);
nvmAvailable.resolve(true);
2017-04-02 21:41:51 +00:00
} else if (
(await plugins.smartshell.execSilent(`bash -c "source ~/.nvm/nvm.sh"`)).exitCode === 0
) {
2018-04-04 20:25:13 +00:00
npmciSmartshell.addSourceFiles([`~/.nvm/nvm.sh`]);
nvmAvailable.resolve(true);
2017-04-02 21:41:51 +00:00
} else {
2018-04-04 20:25:13 +00:00
nvmAvailable.resolve(false);
2017-05-15 14:35:16 +00:00
}
2017-04-02 21:41:51 +00:00
} else {
2018-04-04 20:25:13 +00:00
nvmAvailable.resolve(true);
2017-04-02 21:41:51 +00:00
}
2018-04-04 20:25:13 +00:00
};
checkToolsAvailable();
2016-12-10 21:43:14 +00:00
/**
* bash() allows using bash with nvm in path
2016-12-14 16:45:48 +00:00
* @param commandArg - The command to execute
* @param retryArg - The retryArg: 0 to any positive number will retry, -1 will always succeed, -2 will return undefined
2016-12-10 21:43:14 +00:00
*/
2017-05-15 14:35:16 +00:00
export let bash = async (commandArg: string, retryArg: number = 2): Promise<string> => {
2018-04-04 20:25:13 +00:00
await nvmAvailable.promise; // make sure nvm check has run
let execResult: plugins.smartshell.IExecResult;
2017-03-11 00:10:37 +00:00
// determine if we fail
2018-04-04 20:25:13 +00:00
let failOnError: boolean = true;
2017-02-19 13:46:05 +00:00
if (retryArg === -1) {
2018-04-04 20:25:13 +00:00
failOnError = false;
retryArg = 0;
2017-02-19 13:46:05 +00:00
}
2017-03-11 00:10:37 +00:00
2018-04-04 20:25:13 +00:00
if (!process.env.NPMTS_TEST) {
// NPMTS_TEST is used during testing
2017-02-19 13:46:05 +00:00
for (let i = 0; i <= retryArg; i++) {
2017-05-15 14:35:16 +00:00
if (process.env.DEBUG_NPMCI === 'true') {
2018-04-04 20:25:13 +00:00
console.log(commandArg);
2017-02-19 13:46:05 +00:00
}
2018-04-04 20:25:13 +00:00
execResult = await npmciSmartshell.exec(commandArg);
2016-12-10 21:43:14 +00:00
2017-02-19 13:46:05 +00:00
// determine how bash reacts to error and success
2018-04-04 20:25:13 +00:00
if (execResult.exitCode !== 0 && i === retryArg) {
// something went wrong and retries are exhausted
2017-02-19 13:46:05 +00:00
if (failOnError) {
2018-04-04 20:25:13 +00:00
plugins.beautylog.error('something went wrong and retries are exhausted');
process.exit(1);
2016-06-05 12:55:08 +00:00
}
2018-04-04 20:25:13 +00:00
} else if (execResult.exitCode === 0) {
// everything went fine, or no error wanted
i = retryArg + 1; // retry +1 breaks for loop, if everything works out ok retrials are not wanted
2017-02-19 13:46:05 +00:00
} else {
2018-04-04 20:25:13 +00:00
plugins.beautylog.warn(
'Something went wrong! Exit Code: ' + execResult.exitCode.toString()
);
plugins.beautylog.info('Retry ' + (i + 1).toString() + ' of ' + retryArg.toString());
2017-02-19 13:46:05 +00:00
}
2016-05-30 01:43:15 +00:00
}
2017-02-19 13:46:05 +00:00
} else {
2018-04-04 20:25:13 +00:00
plugins.beautylog.log('ShellExec would be: ' + commandArg);
2017-03-11 00:10:37 +00:00
execResult = {
exitCode: 0,
stdout: 'testOutput'
2018-04-04 20:25:13 +00:00
};
2017-02-19 13:46:05 +00:00
}
2018-04-04 20:25:13 +00:00
return execResult.stdout;
};
2016-12-10 21:43:14 +00:00
/**
* bashNoError allows executing stuff without throwing an error
*/
2017-03-11 00:34:03 +00:00
export let bashNoError = async (commandArg: string): Promise<string> => {
2018-04-04 20:25:13 +00:00
return await bash(commandArg, -1);
};