summaryrefslogtreecommitdiff
path: root/templates/config.toml.erb
blob: ae9b89ea6ec5d8804b3dc0ee18c6d437ea6f86d2 (plain)
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
concurrent = <%= @concurrent %>

[[runners]]
  name = "ruby-2.1"
  url = "https://CI/"
  token = "TOKEN"
  limit = 2
  executor = "shell"
  builds_dir = ""
  shell = "bash"

[[runners]]
  name = "ruby-2.1-docker"
  url = "https://CI/"
  token = "TOKEN"
  limit = 0
  executor = "docker"
  builds_dir = ""
  [runners.docker]
    host = ""
    image = "ruby:2.1"
    privileged = false
    disable_cache = false
    cache_dir = ""

[[runners]]
  name = "ruby-2.1-docker-ssh"
  url = "https://CI/"
  token = "TOKEN"
  limit = 0
  executor = "docker-ssh"
  builds_dir = ""
  [runners.docker]
    host = ""
    image = "ubuntu-upstart:14.04"
    privileged = false
    disable_cache = false
    cache_dir = ""
  [runners.ssh]
    port = "22"
    user = "root"
    password = "docker.io"


[[runners]]
  name = "production-server"
  url = "https://CI/"
  token = "TOKEN"
  limit = 0
  executor = "ssh"
  builds_dir = ""
  [runners.ssh]
    host = "my-production-server"
    port = "22"
    user = "root"
    password = "production-server-password"