From 62c102e6582d16fdc23e13e8ff0ec0a686ea24aa Mon Sep 17 00:00:00 2001 From: schurchleycci Date: Mon, 11 May 2026 10:19:05 -0400 Subject: [PATCH 1/3] chore(chunk): configure sidecar with snapshot and remote commands Add sidecar snapshot image, mark test and lint as remote so they run on the chunk sidecar; format stays local since it rewrites files. Co-Authored-By: Claude Sonnet 4.6 --- .chunk/config.json | 30 +++++++++++++++++++++++++++--- 1 file changed, 27 insertions(+), 3 deletions(-) diff --git a/.chunk/config.json b/.chunk/config.json index 5f148212d..d3e55d3d4 100644 --- a/.chunk/config.json +++ b/.chunk/config.json @@ -6,7 +6,8 @@ "role": "gate", "fileExt": ".go", "timeout": 300, - "limit": 3 + "limit": 3, + "remote": true }, { "name": "lint", @@ -14,7 +15,8 @@ "role": "gate", "fileExt": ".go", "timeout": 60, - "limit": 3 + "limit": 3, + "remote": true }, { "name": "format", @@ -24,5 +26,27 @@ "limit": 3, "always": true } - ] + ], + "validation": { + "sidecarImage": "3e440dfc-2708-466d-8572-fd64aa411950" + }, + "environment": { + "stack": "go", + "setup": [ + { + "name": "system", + "command": "sudo apt-get update \u0026\u0026 sudo apt-get install -y git --no-install-recommends \u0026\u0026 sudo rm -rf /var/lib/apt/lists/*" + }, + { + "name": "install", + "command": "go mod download" + }, + { + "name": "test", + "command": "go test -p 1 ./..." + } + ], + "image": "cimg/go", + "image_version": "1.26.3" + } } From 658368bf1c18bb93d9a9c10cf33b09b887b9ef46 Mon Sep 17 00:00:00 2001 From: schurchleycci Date: Mon, 11 May 2026 10:27:12 -0400 Subject: [PATCH 2/3] chore(chunk): add org ID to chunk config Co-Authored-By: Claude Sonnet 4.6 --- .chunk/config.json | 1 + 1 file changed, 1 insertion(+) diff --git a/.chunk/config.json b/.chunk/config.json index d3e55d3d4..e28125578 100644 --- a/.chunk/config.json +++ b/.chunk/config.json @@ -1,4 +1,5 @@ { + "orgID": "f22b6566-597d-46d5-ba74-99ef5bb3d85c", "commands": [ { "name": "test", From 18cf4a12a180edaa31c0d1b68dd4a66ef8a807a3 Mon Sep 17 00:00:00 2001 From: schurchleycci Date: Thu, 21 May 2026 10:33:32 -0400 Subject: [PATCH 3/3] chore(chunk): run lint locally instead of on sidecar Co-Authored-By: Claude Sonnet 4.6 --- .chunk/config.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.chunk/config.json b/.chunk/config.json index e28125578..9485a3394 100644 --- a/.chunk/config.json +++ b/.chunk/config.json @@ -16,8 +16,7 @@ "role": "gate", "fileExt": ".go", "timeout": 60, - "limit": 3, - "remote": true + "limit": 3 }, { "name": "format",