mirror of
https://github.com/github/codeql-action.git
synced 2026-01-04 21:50:17 +08:00
152 lines
4.1 KiB
TypeScript
152 lines
4.1 KiB
TypeScript
import * as fs from "fs";
|
|
import * as path from "path";
|
|
|
|
import * as core from "@actions/core";
|
|
|
|
import * as actionsUtil from "./actions-util";
|
|
import {
|
|
runAnalyze,
|
|
CodeQLAnalysisError,
|
|
QueriesStatusReport,
|
|
} from "./analyze";
|
|
import { Config, getConfig } from "./config-utils";
|
|
import { getActionsLogger } from "./logging";
|
|
import * as upload_lib from "./upload-lib";
|
|
import * as util from "./util";
|
|
|
|
interface AnalysisStatusReport
|
|
extends upload_lib.UploadStatusReport,
|
|
QueriesStatusReport {}
|
|
|
|
interface FinishStatusReport
|
|
extends actionsUtil.StatusReportBase,
|
|
AnalysisStatusReport {}
|
|
|
|
async function sendStatusReport(
|
|
startedAt: Date,
|
|
stats: AnalysisStatusReport | undefined,
|
|
error?: Error
|
|
) {
|
|
const status =
|
|
stats?.analyze_failure_language !== undefined || error !== undefined
|
|
? "failure"
|
|
: "success";
|
|
const statusReportBase = await actionsUtil.createStatusReportBase(
|
|
"finish",
|
|
status,
|
|
startedAt,
|
|
error?.message,
|
|
error?.stack
|
|
);
|
|
const statusReport: FinishStatusReport = {
|
|
...statusReportBase,
|
|
...(stats || {}),
|
|
};
|
|
await actionsUtil.sendStatusReport(statusReport);
|
|
}
|
|
|
|
async function run() {
|
|
const startedAt = new Date();
|
|
let stats: AnalysisStatusReport | undefined = undefined;
|
|
let config: Config | undefined = undefined;
|
|
try {
|
|
actionsUtil.prepareLocalRunEnvironment();
|
|
if (
|
|
!(await actionsUtil.sendStatusReport(
|
|
await actionsUtil.createStatusReportBase(
|
|
"finish",
|
|
"starting",
|
|
startedAt
|
|
)
|
|
))
|
|
) {
|
|
return;
|
|
}
|
|
const logger = getActionsLogger();
|
|
config = await getConfig(actionsUtil.getTemporaryDirectory(), logger);
|
|
if (config === undefined) {
|
|
throw new Error(
|
|
"Config file could not be found at expected location. Has the 'init' action been called?"
|
|
);
|
|
}
|
|
const apiDetails = {
|
|
auth: actionsUtil.getRequiredInput("token"),
|
|
url: actionsUtil.getRequiredEnvParam("GITHUB_SERVER_URL"),
|
|
};
|
|
const outputDir = actionsUtil.getRequiredInput("output");
|
|
const queriesStats = await runAnalyze(
|
|
outputDir,
|
|
util.getMemoryFlag(actionsUtil.getOptionalInput("ram")),
|
|
util.getAddSnippetsFlag(actionsUtil.getRequiredInput("add-snippets")),
|
|
util.getThreadsFlag(actionsUtil.getOptionalInput("threads"), logger),
|
|
config,
|
|
logger
|
|
);
|
|
|
|
if (actionsUtil.getRequiredInput("upload") === "true") {
|
|
const uploadStats = await upload_lib.uploadFromActions(
|
|
outputDir,
|
|
config.gitHubVersion,
|
|
apiDetails,
|
|
logger
|
|
);
|
|
stats = { ...queriesStats, ...uploadStats };
|
|
} else {
|
|
logger.info("Not uploading results");
|
|
stats = { ...queriesStats };
|
|
}
|
|
} catch (error) {
|
|
core.setFailed(error.message);
|
|
console.log(error);
|
|
|
|
if (error instanceof CodeQLAnalysisError) {
|
|
stats = { ...error.queriesStatusReport };
|
|
}
|
|
|
|
await sendStatusReport(startedAt, stats, error);
|
|
return;
|
|
} finally {
|
|
if (core.isDebug() && config !== undefined) {
|
|
core.info("Debug mode is on. Printing CodeQL debug logs...");
|
|
for (const language of config.languages) {
|
|
const databaseDirectory = util.getCodeQLDatabasePath(
|
|
config.tempDir,
|
|
language
|
|
);
|
|
const logsDirectory = path.join(databaseDirectory, "log");
|
|
|
|
const walkLogFiles = (dir: string) => {
|
|
const entries = fs.readdirSync(dir, { withFileTypes: true });
|
|
for (const entry of entries) {
|
|
if (entry.isFile()) {
|
|
core.startGroup(
|
|
`CodeQL Debug Logs - ${language} - ${entry.name}`
|
|
);
|
|
process.stdout.write(
|
|
fs.readFileSync(path.resolve(dir, entry.name))
|
|
);
|
|
core.endGroup();
|
|
} else if (entry.isDirectory()) {
|
|
walkLogFiles(path.resolve(dir, entry.name));
|
|
}
|
|
}
|
|
};
|
|
walkLogFiles(logsDirectory);
|
|
}
|
|
}
|
|
}
|
|
|
|
await sendStatusReport(startedAt, stats);
|
|
}
|
|
|
|
async function runWrapper() {
|
|
try {
|
|
await run();
|
|
} catch (error) {
|
|
core.setFailed(`analyze action failed: ${error}`);
|
|
console.log(error);
|
|
}
|
|
}
|
|
|
|
void runWrapper();
|