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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

40 lines
1.3 KiB
Ruby
Raw Normal View History

2021-09-04 01:27:46 +05:30
# frozen_string_literal: true
module Ci
2023-03-04 22:38:38 +05:30
# This model represents metadata for a running build.
# Despite the generic RunningBuild name, in this first iteration it applies only to shared runners
# (see Ci::RunningBuild.upsert_shared_runner_build!).
# The decision to insert all of the running builds here was deferred to avoid the pressure on the database as
# at this time that was not necessary.
# We can reconsider the decision to limit this only to shared runners when there is more evidence that inserting all
# of the running builds there is worth the additional pressure.
2021-10-27 15:23:28 +05:30
class RunningBuild < Ci::ApplicationRecord
2023-03-04 22:38:38 +05:30
include Ci::Partitionable
partitionable scope: :build
2021-09-04 01:27:46 +05:30
belongs_to :project
belongs_to :build, class_name: 'Ci::Build'
belongs_to :runner, class_name: 'Ci::Runner'
enum runner_type: ::Ci::Runner.runner_types
def self.upsert_shared_runner_build!(build)
unless build.shared_runner_build?
raise ArgumentError, 'build has not been picked by a shared runner'
end
2023-06-20 00:43:36 +05:30
entry = self.new(
build: build,
project: build.project,
runner: build.runner,
runner_type: build.runner.runner_type
)
2021-09-04 01:27:46 +05:30
entry.validate!
self.upsert(entry.attributes.compact, returning: %w[build_id], unique_by: :build_id)
end
end
end