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
83 lines
2.6 KiB
TypeScript
83 lines
2.6 KiB
TypeScript
import CloudRunnerLogger from '../services/core/cloud-runner-logger';
|
|
import fs from 'node:fs';
|
|
import path from 'node:path';
|
|
import CloudRunner from '../cloud-runner';
|
|
import CloudRunnerOptions from '../options/cloud-runner-options';
|
|
|
|
export class RemoteClientLogger {
|
|
private static get LogFilePath() {
|
|
return path.join(`/home`, `job-log.txt`);
|
|
}
|
|
|
|
public static log(message: string) {
|
|
const finalMessage = `[Client] ${message}`;
|
|
this.appendToFile(finalMessage);
|
|
CloudRunnerLogger.log(finalMessage);
|
|
}
|
|
|
|
public static logCliError(message: string) {
|
|
CloudRunnerLogger.log(`[Client][Error] ${message}`);
|
|
}
|
|
|
|
public static logCliDiagnostic(message: string) {
|
|
CloudRunnerLogger.log(`[Client][Diagnostic] ${message}`);
|
|
}
|
|
|
|
public static logWarning(message: string) {
|
|
CloudRunnerLogger.logWarning(message);
|
|
}
|
|
|
|
public static appendToFile(message: string) {
|
|
if (CloudRunner.isCloudRunnerEnvironment) {
|
|
fs.appendFileSync(RemoteClientLogger.LogFilePath, `${message}\n`);
|
|
}
|
|
}
|
|
|
|
public static async handleLogManagementPostJob() {
|
|
if (CloudRunnerOptions.providerStrategy !== 'k8s') {
|
|
return;
|
|
}
|
|
CloudRunnerLogger.log(`Collected Logs`);
|
|
|
|
// check for log file not existing
|
|
if (!fs.existsSync(RemoteClientLogger.LogFilePath)) {
|
|
CloudRunnerLogger.log(`Log file does not exist`);
|
|
|
|
// check if CloudRunner.isCloudRunnerEnvironment is true, log
|
|
if (!CloudRunner.isCloudRunnerEnvironment) {
|
|
CloudRunnerLogger.log(`Cloud Runner is not running in a cloud environment, not collecting logs`);
|
|
}
|
|
|
|
return;
|
|
}
|
|
CloudRunnerLogger.log(`Log file exist`);
|
|
await new Promise((resolve) => setTimeout(resolve, 1));
|
|
|
|
// let hashedLogs = fs.readFileSync(RemoteClientLogger.LogFilePath).toString();
|
|
//
|
|
// hashedLogs = md5(hashedLogs);
|
|
//
|
|
// for (let index = 0; index < 3; index++) {
|
|
// CloudRunnerLogger.log(`LOGHASH: ${hashedLogs}`);
|
|
// const logs = fs.readFileSync(RemoteClientLogger.LogFilePath).toString();
|
|
// CloudRunnerLogger.log(`LOGS: ${Buffer.from(logs).toString('base64')}`);
|
|
// CloudRunnerLogger.log(
|
|
// `Game CI's "Cloud Runner System" will cancel the log when it has successfully received the log data to verify all logs have been received.`,
|
|
// );
|
|
//
|
|
// // wait for 15 seconds to allow the log to be sent
|
|
// await new Promise((resolve) => setTimeout(resolve, 15000));
|
|
// }
|
|
}
|
|
public static HandleLog(message: string): boolean {
|
|
if (RemoteClientLogger.value !== '') {
|
|
RemoteClientLogger.value += `\n`;
|
|
}
|
|
|
|
RemoteClientLogger.value += message;
|
|
|
|
return false;
|
|
}
|
|
static value: string = '';
|
|
}
|