-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.toml
More file actions
32 lines (29 loc) · 750 Bytes
/
config.toml
File metadata and controls
32 lines (29 loc) · 750 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#
# Configuration file for gitlab-runner.
# Before using this configuration some changes are required according to the setup.
#
concurrent = 3
check_interval = 0
[session_server]
session_timeout = 1800
[[runners]]
name = "GITLAB_RUNNER_NAME"
url = "GITLAB_SERVER_URL"
token = "GITLAB_RUNNER_TOKEN"
executor = "docker"
[runners.custom_build_dir]
[runners.cache]
[runners.cache.s3]
[runners.cache.gcs]
[runners.cache.azure]
[runners.docker]
tls_verify = false
image = "debian:latest"
privileged = false
disable_entrypoint_overwrite = false
oom_kill_disable = false
disable_cache = false
volumes = ["/cache"]
shm_size = 0
pull_policy = ["always"]
allowed_pull_policies = ["always"]