Files
gitlab-ce/app/models/ci/running_build.rb
2025-05-07 12:14:55 +00:00

39 lines
1.2 KiB
Ruby

# frozen_string_literal: true
module Ci
# This model represents metadata for a running build.
class RunningBuild < Ci::ApplicationRecord
include Ci::Partitionable
partitionable scope: :build
belongs_to :project
belongs_to :build, # rubocop: disable Rails/InverseOf -- this relation is not present on build
->(running_build) { in_partition(running_build) },
class_name: 'Ci::Build',
partition_foreign_key: :partition_id
belongs_to :runner, class_name: 'Ci::Runner'
enum :runner_type, ::Ci::Runner.runner_types
def self.upsert_build!(build)
raise ArgumentError, 'build has not been picked by a runner' if build.runner.nil?
# Owner namespace of the runner that executed the build
runner_owner_namespace_id = build.runner.owner_runner_namespace.namespace_id if build.runner.group_type?
entry = self.new(
build: build,
project: build.project,
runner: build.runner,
runner_type: build.runner.runner_type,
runner_owner_namespace_xid: runner_owner_namespace_id
)
entry.validate!
self.upsert(entry.attributes.compact, returning: %w[build_id], unique_by: :build_id)
end
end
end