From c7beebec5038992dbf683266efbf6a0fd589721d Mon Sep 17 00:00:00 2001 From: Willian Galvani Date: Mon, 23 Feb 2026 13:03:25 -0300 Subject: [PATCH 1/2] Frontend: bump Ardupilot-Parameter-Repository --- core/frontend/public/assets/ArduPilot-Parameter-Repository | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/frontend/public/assets/ArduPilot-Parameter-Repository b/core/frontend/public/assets/ArduPilot-Parameter-Repository index de465837c1..d0dff95d51 160000 --- a/core/frontend/public/assets/ArduPilot-Parameter-Repository +++ b/core/frontend/public/assets/ArduPilot-Parameter-Repository @@ -1 +1 @@ -Subproject commit de465837c133cdd27f11a89e4011530a6ab75742 +Subproject commit d0dff95d519be72db2df061cd7ece2d2595a8dec From 494e3630a6678a75508b198d7c4087ee697cfb11 Mon Sep 17 00:00:00 2001 From: Willian Galvani Date: Tue, 28 Apr 2026 13:36:14 -0300 Subject: [PATCH 2/2] Core: bump max-old-space-size to 16g --- .github/workflows/test-and-deploy.yml | 2 +- core/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test-and-deploy.yml b/.github/workflows/test-and-deploy.yml index b74c715491..2dece41e1a 100644 --- a/.github/workflows/test-and-deploy.yml +++ b/.github/workflows/test-and-deploy.yml @@ -66,7 +66,7 @@ jobs: run: bun --cwd ./core/frontend lint - name: Bun build - run: NODE_OPTIONS=--max-old-space-size=8192 bun run --cwd ./core/frontend build + run: NODE_OPTIONS=--max-old-space-size=16384 bun run --cwd ./core/frontend build deploy-docker-images: runs-on: ubuntu-latest diff --git a/core/Dockerfile b/core/Dockerfile index bc183f4405..4252a85704 100644 --- a/core/Dockerfile +++ b/core/Dockerfile @@ -19,7 +19,7 @@ RUN <<-EOF set -e bun install --cwd /home/pi/frontend - NODE_OPTIONS=--max-old-space-size=8192 bun run --cwd /home/pi/frontend build + NODE_OPTIONS=--max-old-space-size=16384 bun run --cwd /home/pi/frontend build EOF