All checks were successful
Test CI / test (pull_request) Successful in 4s
Docker-based runner had networking issues reaching Forgejo from job containers. Host execution mode runs the runner daemon directly on indri, with jobs executing on the host. Actions that need Docker use host networking to access localhost:3001. - Runner binary compiled locally at ~/code/3rd/forgejo-runner - Labels use :host suffix instead of :docker://image - PATH set in launchd plist for mise-managed tools (node, etc.) - Container network set to "host" for actions needing Docker Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
13 lines
340 B
Django/Jinja
13 lines
340 B
Django/Jinja
# {{ ansible_managed }}
|
|
log:
|
|
level: info
|
|
|
|
runner:
|
|
file: {{ forgejo_runner_data_dir }}/.runner
|
|
capacity: {{ forgejo_runner_capacity }}
|
|
timeout: {{ forgejo_runner_timeout }}
|
|
|
|
# Even in host execution mode, some actions run in containers.
|
|
# Use host networking so containers can access localhost services.
|
|
container:
|
|
network: "host"
|