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

_overall.haml « ci « graphs « projects « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: edc4f7b079fc27457ad5865fae0e06f92ee0e253 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
%h4 Overall stats
%ul
  %li
    Total:
    %strong= pluralize @project.builds.count(:all), 'build'
  %li
    Successful:
    %strong= pluralize @project.builds.success.count(:all), 'build'
  %li
    Failed:
    %strong= pluralize @project.builds.failed.count(:all), 'build'
  %li
    Success ratio:
    %strong
      #{success_ratio(@project.builds.success, @project.builds.failed)}%
  %li
    Commits covered:
    %strong
      = @project.pipelines.count(:all)