Welcome to mirror list, hosted at ThFree Co, Russian Federation.

index.html.haml « runners « projects « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 315afe4a764506b1e66e553d6accbc17b26cb68d (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
- page_title "Runners"
.light
  %p
    A 'runner' is a process which runs a build.
    You can setup as many runners as you need.
    %br
    Runners can be placed on separate users, servers, and even on your local machine.

  %p Each runner can be in one of the following states:
  %div
    %ul
      %li
        %span.label.label-success active
        \- runner is active and can process any new build
      %li
        %span.label.label-danger paused
        \- runner is paused and will not receive any new build

%hr

%p.lead To start serving your builds you can either add specific runners to your project or use shared runners
.row
  .col-sm-6
    = render 'specific_runners'
  .col-sm-6
    = render 'shared_runners'