github.com/alloyci/alloy-runner@v1.0.1-0.20180222164613-925503ccafd6/config.toml.example (about)

     1  concurrent = 4
     2  
     3  [[runners]]
     4    name = "ruby-2.1"
     5    url = "https://CI/"
     6    token = "TOKEN"
     7    limit = 2
     8    executor = "shell"
     9    builds_dir = ""
    10    shell = "bash"
    11  
    12  [[runners]]
    13    name = "ruby-2.1-docker"
    14    url = "https://CI/"
    15    token = "TOKEN"
    16    limit = 0
    17    executor = "docker"
    18    builds_dir = ""
    19    [runners.docker]
    20      host = ""
    21      image = "ruby:2.1"
    22      privileged = false
    23      disable_cache = false
    24      cache_dir = ""
    25  
    26  [[runners]]
    27    name = "ruby-2.1-docker-ssh"
    28    url = "https://CI/"
    29    token = "TOKEN"
    30    limit = 0
    31    executor = "docker-ssh"
    32    builds_dir = ""
    33    [runners.docker]
    34      host = ""
    35      image = "ubuntu-upstart:14.04"
    36      privileged = false
    37      disable_cache = false
    38      cache_dir = ""
    39      [runners.docker.sysctls]
    40        "net.ipv4.ip_forward" = "1"
    41    [runners.ssh]
    42      port = "22"
    43      user = "root"
    44      password = "docker.io"
    45  
    46  
    47  [[runners]]
    48    name = "production-server"
    49    url = "https://CI/"
    50    token = "TOKEN"
    51    limit = 0
    52    executor = "ssh"
    53    builds_dir = ""
    54    [runners.ssh]
    55      host = "my-production-server"
    56      port = "22"
    57      user = "root"
    58      password = "production-server-password"