_form.html.haml 7.64 KB
Newer Older
1
.row.prepend-top-default
2
  .col-lg-12
3 4
    = form_for @project, url: project_settings_ci_cd_path(@project) do |f|
      = form_errors(@project)
5
      %fieldset.builds-feature
6
        .form-group
7
          %h5 Auto DevOps (Beta)
8
          %p
9
            Auto DevOps will automatically build, test, and deploy your application based on a predefined Continuous Integration and Delivery configuration.
10
            = link_to 'Learn more about Auto DevOps', help_page_path('topics/autodevops/index.md')
11 12 13 14
            - message = auto_devops_warning_message(@project)
            - if message
              %p.settings-message.text-center
                = message.html_safe
15
          = f.fields_for :auto_devops_attributes, @auto_devops do |form|
16
            .radio
17
              = form.label :enabled_true do
18
                = form.radio_button :enabled, 'true'
19 20 21
                %strong Enable Auto DevOps
                %br
                %span.descr
22
                  The Auto DevOps pipeline configuration will be used when there is no <code>.gitlab-ci.yml</code> in the project.
23

24
            .radio
25
              = form.label :enabled_false do
26
                = form.radio_button :enabled, 'false'
27 28 29
                %strong Disable Auto DevOps
                %br
                %span.descr
30 31
                  An explicit <code>.gitlab-ci.yml</code> needs to be specified before you can begin using Continuous Integration and Delivery.

32
            .radio
33
              = form.label :enabled_ do
34
                = form.radio_button :enabled, ''
35
                %strong Instance default (#{Gitlab::CurrentSettings.auto_devops_enabled? ? 'enabled' : 'disabled'})
36 37
                %br
                %span.descr
38
                  Follow the instance default to either have Auto DevOps enabled or disabled when there is no project specific <code>.gitlab-ci.yml</code>.
39
            %p
40
              You need to specify a domain if you want to use Auto Review Apps and Auto Deploy stages.
41 42 43
            = form.text_field :domain, class: 'form-control', placeholder: 'domain.com'

        %hr
44
        .form-group.append-bottom-default.js-secret-runner-token
45
          = f.label :runners_token, "Runner token", class: 'label-light'
46 47 48
          .form-control.js-secret-value-placeholder
            = '*' * 20
          = f.text_field :runners_token, class: "form-control hide js-secret-value", placeholder: 'xEeFCaDAB89'
49
          %p.help-block The secure token used by the Runner to checkout the project
50 51
          %button.btn.btn-info.prepend-top-10.js-secret-value-reveal-button{ type: 'button', data: { secret_reveal_status: 'false' } }
            = _('Reveal value')
52 53

        %hr
54
        .form-group
55 56 57 58
          %h5.prepend-top-0
            Git strategy for pipelines
          %p
            Choose between <code>clone</code> or <code>fetch</code> to get the recent application code
59
            = link_to icon('question-circle'), help_page_path('user/project/pipelines/settings', anchor: 'git-strategy'), target: '_blank'
60 61 62 63 64
          .radio
            = f.label :build_allow_git_fetch_false do
              = f.radio_button :build_allow_git_fetch, 'false'
              %strong git clone
              %br
65 66
              %span.descr
                Slower but makes sure the project workspace is pristine as it clones the repository from scratch for every job
67 68 69 70 71
          .radio
            = f.label :build_allow_git_fetch_true do
              = f.radio_button :build_allow_git_fetch, 'true'
              %strong git fetch
              %br
72 73
              %span.descr
                Faster as it re-uses the project workspace (falling back to clone if it doesn't exist)
74

75
        %hr
76
        .form-group
77 78
          = f.label :build_timeout_human_readable, 'Timeout', class: 'label-light'
          = f.text_field :build_timeout_human_readable, class: 'form-control'
79
          %p.help-block
80
            Per job. If a job passes this threshold, it will be marked as failed
81
            = link_to icon('question-circle'), help_page_path('user/project/pipelines/settings', anchor: 'timeout'), target: '_blank'
82

Lin Jen-Shin's avatar
Lin Jen-Shin committed
83 84
        %hr
        .form-group
85 86
          = f.label :ci_config_path, 'Custom CI config path', class: 'label-light'
          = f.text_field :ci_config_path, class: 'form-control', placeholder: '.gitlab-ci.yml'
Lin Jen-Shin's avatar
Lin Jen-Shin committed
87
          %p.help-block
88
            The path to CI config file. Defaults to <code>.gitlab-ci.yml</code>
89
            = link_to icon('question-circle'), help_page_path('user/project/pipelines/settings', anchor: 'custom-ci-config-path'), target: '_blank'
Lin Jen-Shin's avatar
Lin Jen-Shin committed
90

91 92
        %hr
        .form-group
93
          .form-check
94 95 96 97
            = f.label :public_builds do
              = f.check_box :public_builds
              %strong Public pipelines
            .help-block
98
              Allow public access to pipelines and job details, including output logs and artifacts
99
              = link_to icon('question-circle'), help_page_path('user/project/pipelines/settings', anchor: 'visibility-of-pipelines'), target: '_blank'
100 101 102 103 104 105 106 107 108 109 110 111 112
            .bs-callout.bs-callout-info
              %p If enabled:
              %ul
                %li
                  For public projects, anyone can view pipelines and access job details (output logs and artifacts)
                %li
                  For internal projects, any logged in user can view pipelines and access job details (output logs and artifacts)
                %li
                  For private projects, any member (guest or higher) can view pipelines and access job details (output logs and artifacts)
              %p
                If disabled, the access level will depend on the user's
                permissions in the project.

113 114
        %hr
        .form-group
115
          .form-check
116 117 118 119 120 121
            = f.label :auto_cancel_pending_pipelines do
              = f.check_box :auto_cancel_pending_pipelines, {}, 'enabled', 'disabled'
              %strong Auto-cancel redundant, pending pipelines
            .help-block
              New pipelines will cancel older, pending pipelines on the same branch
              = link_to icon('question-circle'), help_page_path('user/project/pipelines/settings', anchor: 'auto-cancel-pending-pipelines'), target: '_blank'
122 123

        %hr
124 125 126 127
        .form-group
          = f.label :build_coverage_regex, "Test coverage parsing", class: 'label-light'
          .input-group
            %span.input-group-addon /
128
            = f.text_field :build_coverage_regex, class: 'form-control', placeholder: 'Regular expression'
129 130
            %span.input-group-addon /
          %p.help-block
131
            A regular expression that will be used to find the test coverage
Filipa Lacerda's avatar
Filipa Lacerda committed
132
            output in the job trace. Leave blank to disable
133
            = link_to icon('question-circle'), help_page_path('user/project/pipelines/settings', anchor: 'test-coverage-parsing'), target: '_blank'
134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149
          .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+\%
              %li
                gcovr (C/C++) -
                %code ^TOTAL.*\s+(\d+\%)$
              %li
150
                tap --coverage-report=text-summary (NodeJS) -
151
                %code ^Statements\s*:\s*([^%]+)
PotHix's avatar
PotHix committed
152 153 154
              %li
                excoveralls (Elixir) -
                %code \[TOTAL\]\s+(\d+\.\d+)%
155 156 157
              %li
                JaCoCo (Java/Kotlin)
                %code Total.*?([0-9]{1,3})%
158

159
        = f.submit 'Save changes', class: "btn btn-save"
160

161
%hr
162

163
.row.prepend-top-default
164
  = render partial: 'badge', collection: @badges