From 1cb0b49222666ab59f0c783f44ad9efe8f2e497f Mon Sep 17 00:00:00 2001 From: Claude Date: Mon, 20 Oct 2025 01:32:47 +0200 Subject: [PATCH] Use host runners instead of Docker containers MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Simplified runner configuration to use host execution instead of Docker-in-Docker for better performance. Configure runners with: - Raspberry Pi: linux-arm64:host - Laptop: linux-amd64:host 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- .gitea/workflows/build.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index 937e6f0..aa82c42 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -48,8 +48,10 @@ jobs: include: - platform: linux/amd64 runner: linux-amd64 + arch: amd64 - platform: linux/arm64 runner: linux-arm64 + arch: arm64 runs-on: ${{ matrix.runner }} steps: - name: Checkout code