mirror of
https://github.com/game-ci/unity-builder.git
synced 2025-07-04 12:25:19 -04:00

* fixes * fixes * fixes * fixes * fixes * check for startup message in workflows * check for startup message in workflows * check for startup message in workflows * check for startup message in workflows * check for startup message in workflows * check for startup message in workflows * Update cloud-runner-ci-pipeline.yml * Update cloud-runner-ci-pipeline.yml * no storage class specified * log file path * log file path * log file path * log file path * log file path * log file path * log file path * log file path * updates * log file path * latest develop * log file path * log file path * Update package.json * log file path * log file path * log file path * log file path * log file path * log file path * log file path * log file path * log file path * log file path * log file path * log file path * log file path * log file path * stream logs through standard input and new remote client cli command * stream logs through standard input and new remote client cli command * stream logs through standard input and new remote client cli command * stream logs through standard input and new remote client cli command * stream logs through standard input and new remote client cli command * stream logs through standard input and new remote client cli command * stream logs through standard input and new remote client cli command * stream logs through standard input and new remote client cli command * stream logs through standard input and new remote client cli command * stream logs through standard input and new remote client cli command * stream logs through standard input and new remote client cli command * stream logs through standard input and new remote client cli command * stream logs through standard input and new remote client cli command * stream logs through standard input and new remote client cli command * stream logs through standard input and new remote client cli command * update pipeline to use k3s * version: 'latest' * fixes * disable aws pipe for now * disable aws pipe for now * disable aws pipe for now * disable aws pipe for now * disable aws pipe for now * disable aws pipe for now * disable aws pipe for now * disable aws pipe for now * disable aws pipe for now * disable aws pipe for now * push k8s logs to LOG SERVICE IP * push k8s logs to LOG SERVICE IP * push k8s logs to LOG SERVICE IP * push k8s logs to LOG SERVICE IP * push k8s logs to LOG SERVICE IP * push k8s logs to LOG SERVICE IP * push k8s logs to LOG SERVICE IP * push k8s logs to LOG SERVICE IP * tests * tests * tests * tests * tests * tests * tests * tests * tests * tests * tests * tests * tests * tests * tests * tests * tests * podname logs for log service * podname logs for log service * podname logs for log service * podname logs for log service * podname logs for log service * podname logs for log service * podname logs for log service * podname logs for log service * podname logs for log service * hashed logs * hashed logs * hashed logs * hashed logs * hashed logs * hashed logs * no wait, just repeat logs * no wait, just repeat logs * remove typo - double await * test fix - kubernetes - name typo in github yaml * test fix - kubernetes - name typo in github yaml * check missing log file * check missing log file * Push to steam test * Push to steam test * Fix path * k8s reliable log hashing * k8s reliable log hashing * k8s reliable log hashing * hashed logging k8s * hashed logging k8s * hashed logging k8s * hashed logging k8s * hashed logging k8s * hashed logging k8s * Include log chunk when task runner sees log update, clarify if we can pull logs from same line or next line * Include log chunk when task runner sees log update, clarify if we can pull logs from same line or next line * Include log chunk when task runner sees log update, clarify if we can pull logs from same line or next line * Include log chunk when task runner sees log update, clarify if we can pull logs from same line or next line * Include log chunk when task runner sees log update, clarify if we can pull logs from same line or next line * Fix exit flow for k8s job * hash comparison logging for log complete in k8s flow * Interrupt k8s logs when logs found * cleanup async parameter * cleanup async parameter * cleanup async parameter * fixes * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix
70 lines
2.0 KiB
TypeScript
70 lines
2.0 KiB
TypeScript
import { exec } from 'child_process';
|
|
import { RemoteClientLogger } from '../../remote-client/remote-client-logger';
|
|
|
|
export class CloudRunnerSystem {
|
|
public static async RunAndReadLines(command: string): Promise<string[]> {
|
|
const result = await CloudRunnerSystem.Run(command, false, true);
|
|
|
|
return result
|
|
.split(`\n`)
|
|
.map((x) => x.replace(`\r`, ``))
|
|
.filter((x) => x !== ``)
|
|
.map((x) => {
|
|
const lineValues = x.split(` `);
|
|
|
|
return lineValues[lineValues.length - 1];
|
|
});
|
|
}
|
|
|
|
public static async Run(
|
|
command: string,
|
|
suppressError = false,
|
|
suppressLogs = false,
|
|
// eslint-disable-next-line no-unused-vars
|
|
outputCallback?: (output: string) => void,
|
|
) {
|
|
for (const element of command.split(`\n`)) {
|
|
if (!suppressLogs) {
|
|
RemoteClientLogger.log(element);
|
|
}
|
|
}
|
|
|
|
return await new Promise<string>((promise, throwError) => {
|
|
let output = '';
|
|
const child = exec(command, { maxBuffer: 1024 * 10000 }, (error, stdout, stderr) => {
|
|
if (!suppressError && error) {
|
|
RemoteClientLogger.log(error.toString());
|
|
throwError(error);
|
|
}
|
|
if (stderr) {
|
|
const diagnosticOutput = `${stderr.toString()}`;
|
|
if (!suppressLogs) {
|
|
RemoteClientLogger.logCliDiagnostic(diagnosticOutput);
|
|
}
|
|
output += diagnosticOutput;
|
|
}
|
|
const outputChunk = `${stdout}`;
|
|
if (outputCallback) {
|
|
outputCallback(outputChunk);
|
|
}
|
|
output += outputChunk;
|
|
});
|
|
child.on('close', (code) => {
|
|
if (!suppressLogs) {
|
|
RemoteClientLogger.log(`[${code}]`);
|
|
}
|
|
if (code !== 0 && !suppressError) {
|
|
throwError(output);
|
|
}
|
|
const outputLines = output.split(`\n`);
|
|
for (const element of outputLines) {
|
|
if (!suppressLogs) {
|
|
RemoteClientLogger.log(element);
|
|
}
|
|
}
|
|
promise(output);
|
|
});
|
|
});
|
|
}
|
|
}
|