Fix lib caching
parent
bf39c22e9c
commit
f44c5d30e5
|
|
@ -503,10 +503,7 @@ class RemoteClientSystem {
|
|||
return;
|
||||
}
|
||||
const outputChunk = `${stdout.toString()}`;
|
||||
const outputLines = outputChunk.split(`\n`);
|
||||
for (const element of outputLines) {
|
||||
cloud_runner_logger_1.default.logCli(element);
|
||||
}
|
||||
cloud_runner_logger_1.default.logCli(outputChunk);
|
||||
output += outputChunk;
|
||||
});
|
||||
child.on('close', function (code) {
|
||||
|
|
@ -1281,7 +1278,7 @@ class AWSTaskRunner {
|
|||
for (let logEventsIndex = 0; logEventsIndex < json.logEvents.length; logEventsIndex++) {
|
||||
let message = json.logEvents[logEventsIndex].message;
|
||||
if (json.logEvents[logEventsIndex].message.includes(taskDef.logid)) {
|
||||
cloud_runner_logger_1.default.log('End of cloud runner job logs');
|
||||
cloud_runner_logger_1.default.log('End of log transmission received');
|
||||
readingLogs = false;
|
||||
}
|
||||
else if (message.includes('Rebuilding Library because the asset database could not be found!')) {
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
|
|
@ -15,10 +15,7 @@ export class RemoteClientSystem {
|
|||
return;
|
||||
}
|
||||
const outputChunk = `${stdout.toString()}`;
|
||||
const outputLines = outputChunk.split(`\n`);
|
||||
for (const element of outputLines) {
|
||||
CloudRunnerLogger.logCli(element);
|
||||
}
|
||||
CloudRunnerLogger.logCli(outputChunk);
|
||||
output += outputChunk;
|
||||
});
|
||||
child.on('close', function (code) {
|
||||
|
|
|
|||
|
|
@ -174,7 +174,7 @@ class AWSTaskRunner {
|
|||
for (let logEventsIndex = 0; logEventsIndex < json.logEvents.length; logEventsIndex++) {
|
||||
let message = json.logEvents[logEventsIndex].message;
|
||||
if (json.logEvents[logEventsIndex].message.includes(taskDef.logid)) {
|
||||
CloudRunnerLogger.log('End of cloud runner job logs');
|
||||
CloudRunnerLogger.log('End of log transmission received');
|
||||
readingLogs = false;
|
||||
} else if (message.includes('Rebuilding Library because the asset database could not be found!')) {
|
||||
core.warning('LIBRARY NOT FOUND!');
|
||||
|
|
|
|||
Loading…
Reference in New Issue