From 4d9407c258469bcdb89420e8f5b4e24804f25a02 Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Fri, 10 Jul 2026 14:36:43 +0200 Subject: [PATCH] Capture Claude add-on build context diagnostics --- .github/workflows/pr2841-diagnostic.yml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pr2841-diagnostic.yml b/.github/workflows/pr2841-diagnostic.yml index ee7d777daa..a3aa6fed51 100644 --- a/.github/workflows/pr2841-diagnostic.yml +++ b/.github/workflows/pr2841-diagnostic.yml @@ -26,10 +26,19 @@ jobs: - name: Set up Docker Buildx uses: docker/setup-buildx-action@v4 - - name: Build aarch64 and capture tail + - name: Inspect context and build aarch64 shell: bash run: | set +e + { + echo '=== claude_desktop listing ===' + ls -la claude_desktop + echo '=== symlinks ===' + find claude_desktop -maxdepth 1 -type l -printf '%p -> %l\n' + echo '=== template candidates ===' + find .templates -maxdepth 1 -type f -printf '%f\n' | sort + } >context.txt 2>&1 + BUILD_FROM="$(jq -r '.build_from.aarch64 // empty' '${{ steps.information.outputs.build }}')" docker buildx build \ --platform linux/arm64 \ @@ -47,6 +56,7 @@ jobs: with: name: pr2841-aarch64-build-log path: | + context.txt build-tail.log build-status.txt retention-days: 1