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

project_status.rb « ci « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6d5cafe81a2f1a44a04f88274c73c7207206b5f5 (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
module Ci
  module ProjectStatus
    def status
      last_commit.status if last_commit
    end

    def broken?
      last_commit.failed? if last_commit
    end

    def success?
      last_commit.success? if last_commit
    end

    def broken_or_success?
      broken? || success?
    end

    def last_commit
      @last_commit ||= commits.last if commits.any?
    end

    def last_commit_date
      last_commit.try(:created_at)
    end

    def human_status
      status
    end

    # only check for toggling build status within same ref.
    def last_commit_changed_status?
      ref = last_commit.ref
      last_commits = commits.where(ref: ref).last(2)

      if last_commits.size < 2
        false
      else
        last_commits[0].status != last_commits[1].status
      end
    end

    def last_commit_for_ref(ref)
      commits.where(ref: ref).last
    end
  end
end