summaryrefslogtreecommitdiff
path: root/app/views/projects/_builds_settings.html.haml
blob: 95ab9ecf3e842a3cb9c418e57300eaaa083ab8cf (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
57
58
59
60
%fieldset.builds-feature
  %legend
    Builds:
  .form-group
    .col-sm-offset-2.col-sm-10
      %p Get recent application code using the following command:
      .radio
        = f.label :build_allow_git_fetch_false do
          = f.radio_button :build_allow_git_fetch, 'false'
          %strong git clone
          %br
          %span.descr Slower but makes sure you have a clean dir before every build
      .radio
        = f.label :build_allow_git_fetch_true do
          = f.radio_button :build_allow_git_fetch, 'true'
          %strong git fetch
          %br
          %span.descr Faster

  .form-group
    = f.label :build_timeout_in_minutes, 'Timeout', class: 'control-label'
    .col-sm-10
      = f.number_field :build_timeout_in_minutes, class: 'form-control', min: '0'
      %p.help-block per build in minutes
  .form-group
    = f.label :build_coverage_regex, "Test coverage parsing", class: 'control-label'
    .col-sm-10
      .input-group
        %span.input-group-addon /
        = f.text_field :build_coverage_regex, class: 'form-control', placeholder: '\(\d+.\d+\%\) covered'
        %span.input-group-addon /
      %p.help-block
        We will use this regular expression to find test coverage output in build trace.
        Leave blank if you want to disable this feature
      .bs-callout.bs-callout-info
        %p Below are examples of regex for existing tools:
        %ul
          %li
            Simplecov (Ruby) -
            %code \(\d+.\d+\%\) covered
          %li
            pytest-cov (Python) -
            %code \d+\%\s*$
          %li
            phpunit --coverage-text --colors=never (PHP) -
            %code ^\s*Lines:\s*\d+.\d+\%

  .form-group
    .col-sm-offset-2.col-sm-10
      .checkbox
        = f.label :public_builds do
          = f.check_box :public_builds
          %strong Public builds
        .help-block Allow everyone to access builds for Public and Internal projects

  .form-group
    = f.label :runners_token, "Runners token", class: 'control-label'
    .col-sm-10
      = f.text_field :runners_token, class: "form-control", placeholder: 'xEeFCaDAB89'
      %p.help-block The secure token used to checkout project.