debian-mirror-gitlab/app/models/ci/build_metadata.rb

87 lines
2.4 KiB
Ruby
Raw Normal View History

2018-11-18 11:00:15 +05:30
# frozen_string_literal: true
2018-05-09 12:01:36 +05:30
module Ci
# The purpose of this class is to store Build related data that can be disposed.
# Data that should be persisted forever, should be stored with Ci::Build model.
2019-07-07 11:18:12 +05:30
class BuildMetadata < ApplicationRecord
2019-12-04 20:38:33 +05:30
BuildTimeout = Struct.new(:value, :source)
2018-05-09 12:01:36 +05:30
extend Gitlab::Ci::Model
include Presentable
include ChronicDurationAttribute
2019-12-04 20:38:33 +05:30
include Gitlab::Utils::StrongMemoize
2018-05-09 12:01:36 +05:30
self.table_name = 'ci_builds_metadata'
2019-03-02 22:35:43 +05:30
belongs_to :build, class_name: 'CommitStatus'
2018-05-09 12:01:36 +05:30
belongs_to :project
2019-02-15 15:39:39 +05:30
before_create :set_build_project
2018-05-09 12:01:36 +05:30
validates :build, presence: true
2020-07-28 23:09:34 +05:30
validates :secrets, json_schema: { filename: 'build_metadata_secrets' }
2019-02-15 15:39:39 +05:30
serialize :config_options, Serializers::JSON # rubocop:disable Cop/ActiveRecordSerialize
serialize :config_variables, Serializers::JSON # rubocop:disable Cop/ActiveRecordSerialize
2018-05-09 12:01:36 +05:30
chronic_duration_attr_reader :timeout_human_readable, :timeout
2019-12-04 20:38:33 +05:30
scope :scoped_build, -> { where('ci_builds_metadata.build_id = ci_builds.id') }
scope :with_interruptible, -> { where(interruptible: true) }
2019-12-26 22:10:19 +05:30
scope :with_exposed_artifacts, -> { where(has_exposed_artifacts: true) }
2019-12-04 20:38:33 +05:30
2018-05-09 12:01:36 +05:30
enum timeout_source: {
unknown_timeout_source: 1,
project_timeout_source: 2,
2019-12-04 20:38:33 +05:30
runner_timeout_source: 3,
job_timeout_source: 4
2018-05-09 12:01:36 +05:30
}
def update_timeout_state
2019-12-04 20:38:33 +05:30
timeout = timeout_with_highest_precedence
2018-05-09 12:01:36 +05:30
2019-12-04 20:38:33 +05:30
return unless timeout
2018-05-09 12:01:36 +05:30
2019-12-04 20:38:33 +05:30
update(timeout: timeout.value, timeout_source: timeout.source)
2018-05-09 12:01:36 +05:30
end
2019-02-15 15:39:39 +05:30
private
def set_build_project
self.project_id ||= self.build.project_id
end
2019-12-04 20:38:33 +05:30
def timeout_with_highest_precedence
[(job_timeout || project_timeout), runner_timeout].compact.min_by { |timeout| timeout.value }
end
def project_timeout
strong_memoize(:project_timeout) do
BuildTimeout.new(project&.build_timeout, :project_timeout_source)
end
end
def job_timeout
return unless build.options
strong_memoize(:job_timeout) do
if timeout_from_options = build.options[:job_timeout]
BuildTimeout.new(timeout_from_options, :job_timeout_source)
end
end
end
def runner_timeout
return unless runner_timeout_set?
strong_memoize(:runner_timeout) do
BuildTimeout.new(build.runner.maximum_timeout, :runner_timeout_source)
end
end
def runner_timeout_set?
build.runner&.maximum_timeout.to_i > 0
end
2018-05-09 12:01:36 +05:30
end
end