mirror of
https://github.com/github/codeql-action.git
synced 2025-12-09 17:28:06 +08:00
87 lines
3.7 KiB
JavaScript
Generated
87 lines
3.7 KiB
JavaScript
Generated
"use strict";
|
|
var __importStar = (this && this.__importStar) || function (mod) {
|
|
if (mod && mod.__esModule) return mod;
|
|
var result = {};
|
|
if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k];
|
|
result["default"] = mod;
|
|
return result;
|
|
};
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
const toolrunner = __importStar(require("@actions/exec/lib/toolrunner"));
|
|
const safeWhich = __importStar(require("@chrisgavin/safe-which"));
|
|
/**
|
|
* Wrapper for toolrunner.Toolrunner which checks for specific return code and/or regex matches in console output.
|
|
* Output will be streamed to the live console as well as captured for subsequent processing.
|
|
* Returns promise with return code
|
|
*
|
|
* @param commandLine command to execute
|
|
* @param args optional arguments for tool. Escaping is handled by the lib.
|
|
* @param matchers defines specific codes and/or regexes that should lead to return of a custom error
|
|
* @param options optional exec options. See ExecOptions
|
|
* @returns Promise<number> exit code
|
|
*/
|
|
async function toolrunnerErrorCatcher(commandLine, args, matchers, options) {
|
|
var _a, _b, _c;
|
|
let stdout = "";
|
|
let stderr = "";
|
|
const listeners = {
|
|
stdout: (data) => {
|
|
var _a, _b;
|
|
stdout += data.toString();
|
|
if (((_b = (_a = options) === null || _a === void 0 ? void 0 : _a.listeners) === null || _b === void 0 ? void 0 : _b.stdout) !== undefined) {
|
|
options.listeners.stdout(data);
|
|
}
|
|
else {
|
|
// if no stdout listener was originally defined then we match default behavior of Toolrunner
|
|
process.stdout.write(data);
|
|
}
|
|
},
|
|
stderr: (data) => {
|
|
var _a, _b;
|
|
stderr += data.toString();
|
|
if (((_b = (_a = options) === null || _a === void 0 ? void 0 : _a.listeners) === null || _b === void 0 ? void 0 : _b.stderr) !== undefined) {
|
|
options.listeners.stderr(data);
|
|
}
|
|
else {
|
|
// if no stderr listener was originally defined then we match default behavior of Toolrunner
|
|
process.stderr.write(data);
|
|
}
|
|
},
|
|
};
|
|
// we capture the original return code or error so that if no match is found we can duplicate the behavior
|
|
let returnState;
|
|
try {
|
|
returnState = await new toolrunner.ToolRunner(await safeWhich.safeWhich(commandLine), args, {
|
|
...options,
|
|
listeners,
|
|
ignoreReturnCode: true,
|
|
}).exec();
|
|
}
|
|
catch (e) {
|
|
returnState = e;
|
|
}
|
|
// if there is a zero return code then we do not apply the matchers
|
|
if (returnState === 0)
|
|
return returnState;
|
|
if (matchers) {
|
|
for (const matcher of matchers) {
|
|
if (matcher.exitCode === returnState || ((_a = matcher.outputRegex) === null || _a === void 0 ? void 0 : _a.test(stderr)) || ((_b = matcher.outputRegex) === null || _b === void 0 ? void 0 : _b.test(stdout))) {
|
|
throw new Error(matcher.message);
|
|
}
|
|
}
|
|
}
|
|
if (typeof returnState === "number") {
|
|
// only if we were instructed to ignore the return code do we ever return it non-zero
|
|
if ((_c = options) === null || _c === void 0 ? void 0 : _c.ignoreReturnCode) {
|
|
return returnState;
|
|
}
|
|
else {
|
|
throw new Error(`The process '${commandLine}' failed with exit code ${returnState}`);
|
|
}
|
|
}
|
|
else {
|
|
throw returnState;
|
|
}
|
|
}
|
|
exports.toolrunnerErrorCatcher = toolrunnerErrorCatcher;
|
|
//# sourceMappingURL=toolrunner-error-catcher.js.map
|