Add a GitLab runner

Woo CI!
This commit is contained in:
Jake Howard
2021-06-01 19:29:21 +01:00
parent 64ebaa67d0
commit a867df04a5
7 changed files with 57 additions and 0 deletions

View File

@ -0,0 +1,19 @@
concurrent = {{ ansible_processor_nproc }}
log_level = "warning"
check_interval = 10
[session_server]
session_timeout = 1800
[[runners]]
name = "runner"
url = "https://code.theorangeone.net"
token = "{{ gitlab_runner_token }}"
limit = 0
executor = "docker"
[runners.docker]
image = "alpine"
privileged = false
disable_cache = false
volumes = ["/cache"]