pelican-ci-test/gitlab-runner_config_example/shell/etc/gitlab-runner/config.toml
Dooho Yi b65552515f / ‘gitlab-runner_config_example/docker/etc/gitlab-runner/config.toml’
/ ‘gitlab-runner_config_example/shell/etc/gitlab-runner/config.toml’
2020-04-12 17:17:52 +09:00

27 lines
908 B
TOML

# FIRST, generate a [[runners]] block using command 'sudo gitlab-runner register'
# and THEN, add more options & modify options..
# because the registration must be done explicitly from commnadline.. to get A_GENERATED_TOKEN.
# https://docs.gitlab.com/runner/commands/README.html#gitlab-runner-register
# https://docs.gitlab.com/runner/configuration/advanced-configuration.html
# simple setup running CI @ localhost
# this means you need to manage python3 repos @ localhost by yourself!
# but this builds really fast, because no image fetch/ no update packages, just make !
concurrent = 2 # this should be > 0
check_interval = 0
[session_server]
session_timeout = 1800
[[runners]]
name = "nosignal.hopto.org"
url = "https://nosignal.hopto.org/gitlab/"
token = "A_GENERATED_TOKEN"
executor = "shell"
[runners.custom_build_dir]
[runners.cache]
[runners.cache.s3]
[runners.cache.gcs]