From 58b2fd30c7dfb25f598df99be57e1a4d904df674 Mon Sep 17 00:00:00 2001 From: ginnoir Date: Sat, 4 Jul 2026 23:40:16 -0500 Subject: [PATCH] infra: add second Gitea Actions runner for parallel CI Registers valhalla-ci-runner-2 with the same ubuntu-latest labels to drain the job queue faster. --- portainer-compose.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/portainer-compose.yml b/portainer-compose.yml index 010f029..a247d1b 100644 --- a/portainer-compose.yml +++ b/portainer-compose.yml @@ -149,6 +149,29 @@ services: labels: - "com.centurylabs.watchtower.enable=false" + gitea-runner-ci: + container_name: gitea_runner_ci + image: gitea/act_runner:latest + restart: unless-stopped + networks: + - gitea_internal + environment: + - GITEA_INSTANCE_URL=https://gitea.ginnoir.com + - GITEA_RUNNER_REGISTRATION_TOKEN=${GITEA_RUNNER_REGISTRATION_TOKEN} + - GITEA_RUNNER_NAME=valhalla-ci-runner-2 + - GITEA_RUNNER_LABELS=ubuntu-latest:docker://node:24-bookworm,node-24:docker://node:24-bookworm + - CONFIG_FILE=/data/config.yaml + volumes: + - /config/gitea/act_runner_ci:/data + - /var/run/docker.sock:/var/run/docker.sock + - /home/ginnoir/valhalla-lab:/valhalla-lab + - /config/caddy:/config/caddy + depends_on: + gitea: + condition: service_started + labels: + - "com.centurylabs.watchtower.enable=false" + registry: container_name: registry image: registry:2