From c149ba3fd641b9ca11da978f42b00cba9416a05c Mon Sep 17 00:00:00 2001 From: "S. Paquette" Date: Mon, 13 Apr 2026 09:45:50 -0700 Subject: [PATCH] -> Debugging failed builds --- idc-deploy-shell/buildViewer.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/idc-deploy-shell/buildViewer.sh b/idc-deploy-shell/buildViewer.sh index bbb62412ea3..a587d6dd061 100644 --- a/idc-deploy-shell/buildViewer.sh +++ b/idc-deploy-shell/buildViewer.sh @@ -17,9 +17,12 @@ if [ "${CONFIG_ONLY}" != "True" ]; then export PUBLIC_URL='/v3/' + # Bump Node memory + export NODE_OPTIONS="--max-old-space-size=6000" # Same as root `install:frozen`: install exactly from yarn.lock (no resolver drift after dropping bun from CI). yarn install --frozen-lockfile --non-interactive - yarn run build + # Run in verbose mode to hopefully catch otherwise silent errors + yarn run build --verbose else mkdir -p platform/viewer/dist/ fi