summaryrefslogtreecommitdiff
path: root/lib/scheduler.rb
blob: 76a77f6af0088cb5cc2e836c26ca0bf73a28c37b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
class Scheduler
  def perform
    projects = Project.where(always_build: true).all
    projects.each do |project|
      last_commit = project.commits.last
      next unless last_commit && last_commit.last_build

      interval = project.polling_interval
      if (last_commit.last_build.created_at + interval.hours) < Time.now
        last_commit.retry
      end
    end
  end
end