add debug logging, shutdown timeout, revert container choice
All checks were successful
Check flake.lock / Check health of `flake.lock` (pull_request) Successful in 23s
Check Nix formatting / Perform Nix format checks (pull_request) Successful in 2m40s
Check Nix flake / Perform Nix flake checks (pull_request) Successful in 8m54s
Check Nix flake / Build nix outputs (pull_request) Successful in 13m2s

This commit is contained in:
ahuston-0 2025-03-26 00:39:45 -04:00
parent d70903a84f
commit 761480ad61
No known key found for this signature in database
GPG Key ID: 47940175096C1330

View File

@ -3,7 +3,7 @@
# just run `./act_runner generate-config > config.yaml` to generate a config file. # just run `./act_runner generate-config > config.yaml` to generate a config file.
log: log:
# The level of logging, can be trace, debug, info, warn, error, fatal # The level of logging, can be trace, debug, info, warn, error, fatal
level: info level: debug
runner: runner:
# Where to store the registration result. # Where to store the registration result.
file: .runner file: .runner
@ -22,7 +22,7 @@ runner:
timeout: 3h timeout: 3h
# The timeout for the runner to wait for running jobs to finish when shutting down. # The timeout for the runner to wait for running jobs to finish when shutting down.
# Any running jobs that haven't finished after this timeout will be cancelled. # Any running jobs that haven't finished after this timeout will be cancelled.
shutdown_timeout: 0s shutdown_timeout: 30m
# Whether skip verifying the TLS certificate of the Gitea instance. # Whether skip verifying the TLS certificate of the Gitea instance.
insecure: false insecure: false
# The timeout for fetching the job from the Gitea instance. # The timeout for fetching the job from the Gitea instance.
@ -35,9 +35,9 @@ runner:
# If it's empty when registering, it will ask for inputting labels. # If it's empty when registering, it will ask for inputting labels.
# If it's empty when execute `daemon`, will use labels in `.runner` file. # If it's empty when execute `daemon`, will use labels in `.runner` file.
labels: labels:
- "ubuntu-latest:docker://gitea/runner-images:ubuntu-latest-full" - "ubuntu-latest:docker://gitea/runner-images:ubuntu-latest"
- "ubuntu-22.04:docker://gitea/runner-images:ubuntu-22.04-full" - "ubuntu-22.04:docker://gitea/runner-images:ubuntu-22.04"
- "ubuntu-20.04:docker://gitea/runner-images:ubuntu-20.04-full" - "ubuntu-20.04:docker://gitea/runner-images:ubuntu-20.04"
#cache: #cache:
# Enable cache server to use actions/cache. # Enable cache server to use actions/cache.
#enabled: true #enabled: true