From 0f52bd498a8587d933c3a299038a5bdaf6be5be6 Mon Sep 17 00:00:00 2001 From: John Coffey Date: Tue, 22 Sep 2026 06:45:32 -0700 Subject: [PATCH] ci: run socket-free jobs on the light label Both runners carry `light` (host1, and host2 over the wg-hosts link), so these jobs run on whichever host is free. Jobs that mount the docker socket keep `runs-on: docker`, which only host1 has. --- .gitea/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index cda36db..d4e16d0 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -32,7 +32,7 @@ concurrency: jobs: test: - runs-on: docker + runs-on: light container: image: golang:1.26-bookworm@sha256:a688600ca24f8a4d3ca77f95b0dd40704a9fc787c826660eb7ba0b641b8b175d # 1.26-bookworm steps: @@ -47,7 +47,7 @@ jobs: release: if: startsWith(github.ref, 'refs/tags/') needs: [test] - runs-on: docker + runs-on: light container: image: golang:1.26-bookworm@sha256:a688600ca24f8a4d3ca77f95b0dd40704a9fc787c826660eb7ba0b641b8b175d # 1.26-bookworm steps: