Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/models/ci/pending_build.rb')
-rw-r--r--app/models/ci/pending_build.rb13
1 files changed, 9 insertions, 4 deletions
diff --git a/app/models/ci/pending_build.rb b/app/models/ci/pending_build.rb
index 0663052f51d..7cf3a387516 100644
--- a/app/models/ci/pending_build.rb
+++ b/app/models/ci/pending_build.rb
@@ -1,14 +1,16 @@
# frozen_string_literal: true
module Ci
- class PendingBuild < ApplicationRecord
- extend Gitlab::Ci::Model
-
+ class PendingBuild < Ci::ApplicationRecord
belongs_to :project
belongs_to :build, class_name: 'Ci::Build'
+ belongs_to :namespace, inverse_of: :pending_builds, class_name: 'Namespace'
+
+ validates :namespace, presence: true
scope :ref_protected, -> { where(protected: true) }
scope :queued_before, ->(time) { where(arel_table[:created_at].lt(time)) }
+ scope :with_instance_runners, -> { where(instance_runners_enabled: true) }
def self.upsert_from_build!(build)
entry = self.new(args_from_build(build))
@@ -22,7 +24,8 @@ module Ci
args = {
build: build,
project: build.project,
- protected: build.protected?
+ protected: build.protected?,
+ namespace: build.project.namespace
}
if Feature.enabled?(:ci_pending_builds_maintain_shared_runners_data, type: :development, default_enabled: :yaml)
@@ -56,3 +59,5 @@ module Ci
private_class_method :builds_access_level?
end
end
+
+Ci::PendingBuild.prepend_mod_with('Ci::PendingBuild')