From 1e57879d8ddcd73b960e85cc39f742e4c7ef7611 Mon Sep 17 00:00:00 2001 From: Frostebite Date: Thu, 4 Sep 2025 23:33:11 +0100 Subject: [PATCH] fix(non-container logs): timeout the remote-cli-log-stream to avoid CI hangs; s3 steps pass again --- src/model/cloud-runner/workflows/build-automation-workflow.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/model/cloud-runner/workflows/build-automation-workflow.ts b/src/model/cloud-runner/workflows/build-automation-workflow.ts index fad2b788..76d2b71c 100644 --- a/src/model/cloud-runner/workflows/build-automation-workflow.ts +++ b/src/model/cloud-runner/workflows/build-automation-workflow.ts @@ -127,7 +127,7 @@ node ${builderPath} -m remote-cli-pre-build`; return ` echo "game ci start" echo "game ci start" >> "$LOG_FILE" - printf '' | node ${builderPath} -m remote-cli-log-stream --logFile "$LOG_FILE" + timeout 3s node ${builderPath} -m remote-cli-log-stream --logFile "$LOG_FILE" || true node ${builderPath} -m remote-cli-post-build`; } }