From ce9fb6781acbbe39677cbb51eaa909158796c4a8 Mon Sep 17 00:00:00 2001 From: spinline Date: Fri, 6 Feb 2026 22:22:03 +0300 Subject: [PATCH] ci: configure runner to use host mode with mips-builder label --- docker/runner/entrypoint.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/docker/runner/entrypoint.sh b/docker/runner/entrypoint.sh index 07f98bb..20d78c9 100644 --- a/docker/runner/entrypoint.sh +++ b/docker/runner/entrypoint.sh @@ -5,10 +5,13 @@ set -e if [ -n "$GITEA_INSTANCE_URL" ] && [ -n "$GITEA_RUNNER_TOKEN" ]; then if [ ! -f ".runner" ]; then echo "Registering runner..." + # Register with label 'mips-builder' valid for host execution + # plus 'ubuntu-latest' mapped to host for convenience if needed act_runner register \ --instance "$GITEA_INSTANCE_URL" \ --token "$GITEA_RUNNER_TOKEN" \ - --name "custom-mips-runner-$(hostname)" \ + --name "vibetorrent-mips-runner-$(hostname)" \ + --labels "mips-builder:host,ubuntu-latest:host" \ --no-interactive else echo "Runner already registered."