mirror of
https://github.com/gitlabhq/gitlabhq.git
synced 2025-07-21 23:37:47 +00:00
39 lines
1.2 KiB
Ruby
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
|