/ ‘gitlab-runner_config_example/docker/etc/gitlab-runner/config.toml’
This commit is contained in:
parent
557b6b58c8
commit
7c7c6f0237
1 changed files with 13 additions and 3 deletions
|
|
@ -5,11 +5,21 @@ check_interval = 0
|
||||||
session_timeout = 1800
|
session_timeout = 1800
|
||||||
|
|
||||||
[[runners]]
|
[[runners]]
|
||||||
name = "nosignal.hopto.org"
|
name = "pelican-ci-test"
|
||||||
url = "https://nosignal.hopto.org/gitlab/"
|
url = "https://nosignal.hopto.org/gitlab/"
|
||||||
token = "THE_TOKEN_HERE"
|
token = "A_GENERATED_TOKEN"
|
||||||
executor = "shell"
|
executor = "docker"
|
||||||
[runners.custom_build_dir]
|
[runners.custom_build_dir]
|
||||||
|
[runners.docker]
|
||||||
|
tls_verify = false
|
||||||
|
image = "python:3.7-alpine"
|
||||||
|
privileged = false
|
||||||
|
disable_entrypoint_overwrite = false
|
||||||
|
oom_kill_disable = false
|
||||||
|
disable_cache = false
|
||||||
|
volumes = ["/home/admin/pelican-themes/:/themes", "/var/www/webapp_doohoyi/nosignal.hopto.org_site/ci:/site-public:rw"]
|
||||||
|
shm_size = 0
|
||||||
|
network_mode = "host"
|
||||||
[runners.cache]
|
[runners.cache]
|
||||||
[runners.cache.s3]
|
[runners.cache.s3]
|
||||||
[runners.cache.gcs]
|
[runners.cache.gcs]
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue