The gitea-actions role now uses a `gitea_runners` list instead of a
single `gitea_instance_url`. Each instance gets its own config, systemd
service, working directory, and cache. Migrates from the old single
`act_runner.service` to per-instance `act_runner-{name}.service`.
Adds git.skudak.com alongside git.debyl.io as runner targets.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
31 lines
545 B
Django/Jinja
31 lines
545 B
Django/Jinja
log:
|
|
level: info
|
|
|
|
runner:
|
|
file: {{ act_runner_work_dir }}/{{ runner_name }}/.runner
|
|
capacity: 1
|
|
timeout: 3h
|
|
insecure: false
|
|
fetch_timeout: 5s
|
|
fetch_interval: 2s
|
|
labels:
|
|
- ubuntu-latest:host
|
|
- ubuntu-22.04:host
|
|
- fedora:host
|
|
|
|
cache:
|
|
enabled: true
|
|
dir: {{ act_runner_work_dir }}/{{ runner_name }}/cache
|
|
|
|
container:
|
|
network: host
|
|
privileged: false
|
|
options:
|
|
workdir_parent:
|
|
valid_volumes: []
|
|
docker_host: ""
|
|
force_pull: false
|
|
|
|
host:
|
|
workdir_parent: {{ act_runner_work_dir }}/{{ runner_name }}/workdir
|