26 lines
833 B
TOML
26 lines
833 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
|
|
|
|
# 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]
|