|
|
|
|
@@ -36,40 +36,40 @@ runner:
|
|
|
|
|
# It works when something like `uses: actions/checkout@v4` is used and DEFAULT_ACTIONS_URL is set to github,
|
|
|
|
|
# and github_mirror is not empty. In this case,
|
|
|
|
|
# it replaces https://github.com with the value here, which is useful for some special network environments.
|
|
|
|
|
github_mirror: ""
|
|
|
|
|
github_mirror: ''
|
|
|
|
|
# The labels of a runner are used to determine which jobs the runner can run, and how to run them.
|
|
|
|
|
# Like: "macos-arm64:host" or "ubuntu-latest:docker://docker.gitea.com/runner-images:ubuntu-latest"
|
|
|
|
|
# Find more images provided by Gitea at https://gitea.com/docker.gitea.com/runner-images .
|
|
|
|
|
# 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.
|
|
|
|
|
labels:
|
|
|
|
|
- "ubuntu-latest:docker://docker.gitea.com/runner-images:ubuntu-latest"
|
|
|
|
|
- "ubuntu-22.04:docker://docker.gitea.com/runner-images:ubuntu-22.04"
|
|
|
|
|
- "ubuntu-20.04:docker://docker.gitea.com/runner-images:ubuntu-20.04"
|
|
|
|
|
- 'ubuntu-latest:docker://docker.gitea.com/runner-images:ubuntu-latest'
|
|
|
|
|
- 'ubuntu-22.04:docker://docker.gitea.com/runner-images:ubuntu-22.04'
|
|
|
|
|
- 'ubuntu-20.04:docker://docker.gitea.com/runner-images:ubuntu-20.04'
|
|
|
|
|
|
|
|
|
|
cache:
|
|
|
|
|
# Enable cache server to use actions/cache.
|
|
|
|
|
enabled: true
|
|
|
|
|
# The directory to store the cache data.
|
|
|
|
|
# If it's empty, the cache data will be stored in $HOME/.cache/actcache.
|
|
|
|
|
dir: ""
|
|
|
|
|
dir: ''
|
|
|
|
|
# The host of the cache server.
|
|
|
|
|
# It's not for the address to listen, but the address to connect from job containers.
|
|
|
|
|
# So 0.0.0.0 is a bad choice, leave it empty to detect automatically.
|
|
|
|
|
host: ""
|
|
|
|
|
host: ''
|
|
|
|
|
# The port of the cache server.
|
|
|
|
|
# 0 means to use a random available port.
|
|
|
|
|
port: 0
|
|
|
|
|
# The external cache server URL. Valid only when enable is true.
|
|
|
|
|
# If it's specified, act_runner will use this URL as the ACTIONS_CACHE_URL rather than start a server by itself.
|
|
|
|
|
# The URL should generally end with "/".
|
|
|
|
|
external_server: ""
|
|
|
|
|
external_server: ''
|
|
|
|
|
|
|
|
|
|
container:
|
|
|
|
|
# Specifies the network to which the container will connect.
|
|
|
|
|
# Could be host, bridge or the name of a custom network.
|
|
|
|
|
# If it's empty, act_runner will create a network automatically.
|
|
|
|
|
network: ""
|
|
|
|
|
network: ''
|
|
|
|
|
# Whether to use privileged mode or not when launching task containers (privileged mode is required for Docker-in-Docker).
|
|
|
|
|
privileged: false
|
|
|
|
|
# And other options to be used when the container is started (eg, --add-host=my.gitea.url:host-gateway).
|
|
|
|
|
@@ -94,7 +94,7 @@ container:
|
|
|
|
|
# If it's empty, act_runner will find an available docker host automatically.
|
|
|
|
|
# If it's "-", act_runner will find an available docker host automatically, but the docker host won't be mounted to the job containers and service containers.
|
|
|
|
|
# If it's not empty or "-", the specified docker host will be used. An error will be returned if it doesn't work.
|
|
|
|
|
docker_host: ""
|
|
|
|
|
docker_host: ''
|
|
|
|
|
# Pull docker image(s) even if already present
|
|
|
|
|
force_pull: true
|
|
|
|
|
# Rebuild docker image(s) even if already present
|
|
|
|
|
|