mirror of
https://github.com/alexbelgium/hassio-addons.git
synced 2026-07-29 17:30:33 +02:00
Merge pull request #2844 from alexbelgium/agent/cleanup-claude-terminal-validation
Clean up Claude terminal validation workflow
This commit is contained in:
14
.github/workflows/pr2841-diagnostic.yml
vendored
14
.github/workflows/pr2841-diagnostic.yml
vendored
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
name: PR 2841 Build Diagnostic
|
name: Claude Add-on Build Diagnostic
|
||||||
|
|
||||||
on:
|
on:
|
||||||
pull_request:
|
pull_request:
|
||||||
@@ -8,7 +8,6 @@ on:
|
|||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
diagnose:
|
diagnose:
|
||||||
if: ${{ github.event.pull_request.number == 2841 }}
|
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
@@ -20,16 +19,19 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
path: ./claude_desktop/
|
path: ./claude_desktop/
|
||||||
|
|
||||||
|
- name: Set up QEMU
|
||||||
|
uses: docker/setup-qemu-action@v4
|
||||||
|
|
||||||
- name: Set up Docker Buildx
|
- name: Set up Docker Buildx
|
||||||
uses: docker/setup-buildx-action@v4
|
uses: docker/setup-buildx-action@v4
|
||||||
|
|
||||||
- name: Build amd64 and capture tail
|
- name: Build aarch64 and capture tail
|
||||||
shell: bash
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
set +e
|
set +e
|
||||||
BUILD_FROM="$(jq -r '.build_from.amd64 // empty' '${{ steps.information.outputs.build }}')"
|
BUILD_FROM="$(jq -r '.build_from.aarch64 // empty' '${{ steps.information.outputs.build }}')"
|
||||||
docker buildx build \
|
docker buildx build \
|
||||||
--platform linux/amd64 \
|
--platform linux/arm64 \
|
||||||
--progress=plain \
|
--progress=plain \
|
||||||
--build-arg "BUILD_FROM=${BUILD_FROM}" \
|
--build-arg "BUILD_FROM=${BUILD_FROM}" \
|
||||||
--file claude_desktop/Dockerfile \
|
--file claude_desktop/Dockerfile \
|
||||||
@@ -42,7 +44,7 @@ jobs:
|
|||||||
- name: Upload diagnostic log
|
- name: Upload diagnostic log
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: pr2841-amd64-build-log
|
name: claude-aarch64-build-log
|
||||||
path: |
|
path: |
|
||||||
build-tail.log
|
build-tail.log
|
||||||
build-status.txt
|
build-status.txt
|
||||||
|
|||||||
@@ -7,6 +7,8 @@
|
|||||||
- Add `claude-headroom` for Headroom's supported wrapper, reusing the supervised proxy with `--no-proxy` while leaving RTK management to the add-on.
|
- Add `claude-headroom` for Headroom's supported wrapper, reusing the supervised proxy with `--no-proxy` while leaving RTK management to the add-on.
|
||||||
- Keep Claude Desktop on the MCP-only Headroom integration and remove the ineffective `ANTHROPIC_BASE_URL` export from its launch environment.
|
- Keep Claude Desktop on the MCP-only Headroom integration and remove the ineffective `ANTHROPIC_BASE_URL` export from its launch environment.
|
||||||
- Preserve ownership of Claude settings for the configured runtime user and remove only the exact add-on-managed RTK hook when RTK is disabled.
|
- Preserve ownership of Claude settings for the configured runtime user and remove only the exact add-on-managed RTK hook when RTK is disabled.
|
||||||
|
- Fetch the repository-standard helper templates during image construction so the add-on builds from its actual Docker context.
|
||||||
|
- Install only Headroom's proxy, code-compression, and MCP features instead of unused CUDA, voice, image, memory, and evaluation stacks.
|
||||||
- Document the shared-home architecture, separate Desktop/CLI sessions, direct HTTP terminal security, shared concurrent sessions, and configurable data location.
|
- Document the shared-home architecture, separate Desktop/CLI sessions, direct HTTP terminal security, shared concurrent sessions, and configurable data location.
|
||||||
|
|
||||||
## 1.12 (09-07-2026)
|
## 1.12 (09-07-2026)
|
||||||
|
|||||||
Reference in New Issue
Block a user