2018-11-18 11:00:15 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2015-09-25 12:07:36 +05:30
|
|
|
module Ci
|
2015-10-24 18:46:33 +05:30
|
|
|
class Build < CommitStatus
|
2018-03-17 18:26:18 +05:30
|
|
|
prepend ArtifactMigratable
|
2016-09-29 09:46:39 +05:30
|
|
|
include TokenAuthenticatable
|
2016-11-03 12:29:30 +05:30
|
|
|
include AfterCommitQueue
|
2018-05-09 12:01:36 +05:30
|
|
|
include ObjectStorage::BackgroundMove
|
2017-08-17 22:00:37 +05:30
|
|
|
include Presentable
|
2018-03-17 18:26:18 +05:30
|
|
|
include Importable
|
2018-05-09 12:01:36 +05:30
|
|
|
include Gitlab::Utils::StrongMemoize
|
2018-12-13 13:39:08 +05:30
|
|
|
include Deployable
|
2019-01-03 12:48:30 +05:30
|
|
|
include HasRef
|
2016-09-29 09:46:39 +05:30
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
belongs_to :project, inverse_of: :builds
|
2017-08-17 22:00:37 +05:30
|
|
|
belongs_to :runner
|
|
|
|
belongs_to :trigger_request
|
2016-04-02 18:10:28 +05:30
|
|
|
belongs_to :erased_by, class_name: 'User'
|
2015-09-25 12:07:36 +05:30
|
|
|
|
2018-11-18 11:00:15 +05:30
|
|
|
RUNNER_FEATURES = {
|
|
|
|
upload_multiple_artifacts: -> (build) { build.publishes_artifacts_reports? }
|
|
|
|
}.freeze
|
|
|
|
|
2018-12-13 13:39:08 +05:30
|
|
|
has_one :deployment, as: :deployable, class_name: 'Deployment'
|
2018-03-17 18:26:18 +05:30
|
|
|
has_many :trace_sections, class_name: 'Ci::BuildTraceSection'
|
2018-10-15 14:42:47 +05:30
|
|
|
has_many :trace_chunks, class_name: 'Ci::BuildTraceChunk', foreign_key: :build_id
|
2018-03-17 18:26:18 +05:30
|
|
|
|
2018-10-15 14:42:47 +05:30
|
|
|
has_many :job_artifacts, class_name: 'Ci::JobArtifact', foreign_key: :job_id, dependent: :destroy, inverse_of: :job # rubocop:disable Cop/ActiveRecordDependent
|
2018-11-18 11:00:15 +05:30
|
|
|
|
|
|
|
Ci::JobArtifact.file_types.each do |key, value|
|
|
|
|
has_one :"job_artifacts_#{key}", -> { where(file_type: value) }, class_name: 'Ci::JobArtifact', inverse_of: :job, foreign_key: :job_id
|
|
|
|
end
|
2017-08-17 22:00:37 +05:30
|
|
|
|
2018-05-09 12:01:36 +05:30
|
|
|
has_one :metadata, class_name: 'Ci::BuildMetadata'
|
2018-11-08 19:23:39 +05:30
|
|
|
has_one :runner_session, class_name: 'Ci::BuildRunnerSession', validate: true, inverse_of: :build
|
|
|
|
|
|
|
|
accepts_nested_attributes_for :runner_session
|
|
|
|
|
2018-05-09 12:01:36 +05:30
|
|
|
delegate :timeout, to: :metadata, prefix: true, allow_nil: true
|
2018-11-08 19:23:39 +05:30
|
|
|
delegate :url, to: :runner_session, prefix: true, allow_nil: true
|
|
|
|
delegate :terminal_specification, to: :runner_session, allow_nil: true
|
2018-10-15 14:42:47 +05:30
|
|
|
delegate :gitlab_deploy_token, to: :project
|
2018-12-05 23:21:45 +05:30
|
|
|
delegate :trigger_short_token, to: :trigger_request, allow_nil: true
|
2018-05-09 12:01:36 +05:30
|
|
|
|
|
|
|
##
|
|
|
|
# The "environment" field for builds is a String, and is the unexpanded name!
|
|
|
|
#
|
2017-08-17 22:00:37 +05:30
|
|
|
def persisted_environment
|
2018-05-09 12:01:36 +05:30
|
|
|
return unless has_environment?
|
|
|
|
|
|
|
|
strong_memoize(:persisted_environment) do
|
|
|
|
Environment.find_by(name: expanded_environment_name, project: project)
|
|
|
|
end
|
2017-08-17 22:00:37 +05:30
|
|
|
end
|
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
serialize :options # rubocop:disable Cop/ActiveRecordSerialize
|
|
|
|
serialize :yaml_variables, Gitlab::Serializer::Ci::Variables # rubocop:disable Cop/ActiveRecordSerialize
|
2017-08-17 22:00:37 +05:30
|
|
|
|
|
|
|
delegate :name, to: :project, prefix: true
|
2015-09-25 12:07:36 +05:30
|
|
|
|
|
|
|
validates :coverage, numericality: true, allow_blank: true
|
2017-08-17 22:00:37 +05:30
|
|
|
validates :ref, presence: true
|
2015-09-25 12:07:36 +05:30
|
|
|
|
|
|
|
scope :unstarted, ->() { where(runner_id: nil) }
|
2015-10-24 18:46:33 +05:30
|
|
|
scope :ignore_failures, ->() { where(allow_failure: false) }
|
2018-03-27 19:54:05 +05:30
|
|
|
scope :with_artifacts_archive, ->() do
|
2018-03-17 18:26:18 +05:30
|
|
|
where('(artifacts_file IS NOT NULL AND artifacts_file <> ?) OR EXISTS (?)',
|
2018-03-27 19:54:05 +05:30
|
|
|
'', Ci::JobArtifact.select(1).where('ci_builds.id = ci_job_artifacts.job_id').archive)
|
2018-03-17 18:26:18 +05:30
|
|
|
end
|
2018-11-08 19:23:39 +05:30
|
|
|
|
2018-12-05 23:21:45 +05:30
|
|
|
scope :with_existing_job_artifacts, ->(query) do
|
|
|
|
where('EXISTS (?)', ::Ci::JobArtifact.select(1).where('ci_builds.id = ci_job_artifacts.job_id').merge(query))
|
|
|
|
end
|
|
|
|
|
2018-11-20 20:47:30 +05:30
|
|
|
scope :with_archived_trace, ->() do
|
2018-12-05 23:21:45 +05:30
|
|
|
with_existing_job_artifacts(Ci::JobArtifact.trace)
|
2018-11-20 20:47:30 +05:30
|
|
|
end
|
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
scope :without_archived_trace, ->() do
|
|
|
|
where('NOT EXISTS (?)', Ci::JobArtifact.select(1).where('ci_builds.id = ci_job_artifacts.job_id').trace)
|
|
|
|
end
|
|
|
|
|
2018-11-18 11:00:15 +05:30
|
|
|
scope :with_test_reports, ->() do
|
2018-12-05 23:21:45 +05:30
|
|
|
with_existing_job_artifacts(Ci::JobArtifact.test_reports)
|
|
|
|
.eager_load_job_artifacts
|
2018-11-18 11:00:15 +05:30
|
|
|
end
|
|
|
|
|
2018-12-05 23:21:45 +05:30
|
|
|
scope :eager_load_job_artifacts, -> { includes(:job_artifacts) }
|
|
|
|
|
2018-05-09 12:01:36 +05:30
|
|
|
scope :with_artifacts_stored_locally, -> { with_artifacts_archive.where(artifacts_file_store: [nil, LegacyArtifactUploader::Store::LOCAL]) }
|
2018-11-20 20:47:30 +05:30
|
|
|
scope :with_archived_trace_stored_locally, -> { with_archived_trace.where(artifacts_file_store: [nil, LegacyArtifactUploader::Store::LOCAL]) }
|
2018-03-27 19:54:05 +05:30
|
|
|
scope :with_artifacts_not_expired, ->() { with_artifacts_archive.where('artifacts_expire_at IS NULL OR artifacts_expire_at > ?', Time.now) }
|
|
|
|
scope :with_expired_artifacts, ->() { with_artifacts_archive.where('artifacts_expire_at < ?', Time.now) }
|
2016-08-24 12:49:21 +05:30
|
|
|
scope :last_month, ->() { where('created_at > ?', Date.today - 1.month) }
|
2018-12-05 23:21:45 +05:30
|
|
|
scope :manual_actions, ->() { where(when: :manual, status: COMPLETED_STATUSES + %i[manual]) }
|
|
|
|
scope :scheduled_actions, ->() { where(when: :delayed, status: COMPLETED_STATUSES + %i[scheduled]) }
|
2018-03-17 18:26:18 +05:30
|
|
|
scope :ref_protected, -> { where(protected: true) }
|
2018-11-08 19:23:39 +05:30
|
|
|
scope :with_live_trace, -> { where('EXISTS (?)', Ci::BuildTraceChunk.where('ci_builds.id = ci_build_trace_chunks.build_id').select(1)) }
|
2018-03-17 18:26:18 +05:30
|
|
|
|
|
|
|
scope :matches_tag_ids, -> (tag_ids) do
|
|
|
|
matcher = ::ActsAsTaggableOn::Tagging
|
2019-01-03 12:48:30 +05:30
|
|
|
.where(taggable_type: CommitStatus)
|
2018-03-17 18:26:18 +05:30
|
|
|
.where(context: 'tags')
|
|
|
|
.where('taggable_id = ci_builds.id')
|
|
|
|
.where.not(tag_id: tag_ids).select('1')
|
|
|
|
|
|
|
|
where("NOT EXISTS (?)", matcher)
|
|
|
|
end
|
|
|
|
|
|
|
|
scope :with_any_tags, -> do
|
|
|
|
matcher = ::ActsAsTaggableOn::Tagging
|
2019-01-03 12:48:30 +05:30
|
|
|
.where(taggable_type: CommitStatus)
|
2018-03-17 18:26:18 +05:30
|
|
|
.where(context: 'tags')
|
|
|
|
.where('taggable_id = ci_builds.id').select('1')
|
|
|
|
|
|
|
|
where("EXISTS (?)", matcher)
|
|
|
|
end
|
2015-09-25 12:07:36 +05:30
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
mount_uploader :legacy_artifacts_file, LegacyArtifactUploader, mount_on: :artifacts_file
|
|
|
|
mount_uploader :legacy_artifacts_metadata, LegacyArtifactUploader, mount_on: :artifacts_metadata
|
2015-11-26 14:37:03 +05:30
|
|
|
|
2015-09-25 12:07:36 +05:30
|
|
|
acts_as_taggable
|
|
|
|
|
2019-01-03 12:48:30 +05:30
|
|
|
add_authentication_token_field :token
|
2016-09-29 09:46:39 +05:30
|
|
|
|
2016-08-24 12:49:21 +05:30
|
|
|
before_save :update_artifacts_size, if: :artifacts_file_changed?
|
2016-09-29 09:46:39 +05:30
|
|
|
before_save :ensure_token
|
2017-08-17 22:00:37 +05:30
|
|
|
before_destroy { unscoped_project }
|
2016-01-14 18:37:52 +05:30
|
|
|
|
2018-05-09 12:01:36 +05:30
|
|
|
before_create :ensure_metadata
|
2018-03-17 18:26:18 +05:30
|
|
|
after_create unless: :importing? do |build|
|
|
|
|
run_after_commit { BuildHooksWorker.perform_async(build.id) }
|
|
|
|
end
|
|
|
|
|
2018-10-15 14:42:47 +05:30
|
|
|
after_save :update_project_statistics_after_save, if: :artifacts_size_changed?
|
|
|
|
after_destroy :update_project_statistics_after_destroy, unless: :project_destroyed?
|
2015-09-25 12:07:36 +05:30
|
|
|
|
2016-06-02 11:05:42 +05:30
|
|
|
class << self
|
2017-09-10 17:25:29 +05:30
|
|
|
# This is needed for url_for to work,
|
|
|
|
# as the controller is JobsController
|
|
|
|
def model_name
|
|
|
|
ActiveModel::Name.new(self, nil, 'job')
|
|
|
|
end
|
|
|
|
|
2015-09-25 12:07:36 +05:30
|
|
|
def first_pending
|
|
|
|
pending.unstarted.order('created_at ASC').first
|
|
|
|
end
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
def retry(build, current_user)
|
2018-12-05 23:21:45 +05:30
|
|
|
# rubocop: disable CodeReuse/ServiceClass
|
2017-08-17 22:00:37 +05:30
|
|
|
Ci::RetryBuildService
|
|
|
|
.new(build.project, current_user)
|
|
|
|
.execute(build)
|
2018-12-05 23:21:45 +05:30
|
|
|
# rubocop: enable CodeReuse/ServiceClass
|
2015-09-25 12:07:36 +05:30
|
|
|
end
|
2019-01-03 12:48:30 +05:30
|
|
|
|
|
|
|
def find_running_by_token(token)
|
|
|
|
running.find_by_token(token)
|
|
|
|
end
|
2015-09-25 12:07:36 +05:30
|
|
|
end
|
|
|
|
|
2016-09-13 17:45:13 +05:30
|
|
|
state_machine :status do
|
2017-08-17 22:00:37 +05:30
|
|
|
event :actionize do
|
|
|
|
transition created: :manual
|
|
|
|
end
|
|
|
|
|
2018-12-05 23:21:45 +05:30
|
|
|
event :schedule do
|
|
|
|
transition created: :scheduled
|
|
|
|
end
|
|
|
|
|
|
|
|
event :unschedule do
|
|
|
|
transition scheduled: :manual
|
|
|
|
end
|
|
|
|
|
|
|
|
event :enqueue_scheduled do
|
|
|
|
transition scheduled: :pending, if: ->(build) do
|
|
|
|
build.scheduled_at && build.scheduled_at < Time.now
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
before_transition scheduled: any do |build|
|
|
|
|
build.scheduled_at = nil
|
|
|
|
end
|
|
|
|
|
|
|
|
before_transition created: :scheduled do |build|
|
|
|
|
build.scheduled_at = build.options_scheduled_at
|
|
|
|
end
|
|
|
|
|
|
|
|
after_transition created: :scheduled do |build|
|
|
|
|
build.run_after_commit do
|
|
|
|
Ci::BuildScheduleWorker.perform_at(build.scheduled_at, build.id)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
after_transition any => [:pending] do |build|
|
|
|
|
build.run_after_commit do
|
|
|
|
BuildQueueWorker.perform_async(id)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-04-02 18:10:28 +05:30
|
|
|
after_transition pending: :running do |build|
|
2018-12-13 13:39:08 +05:30
|
|
|
build.deployment&.run
|
|
|
|
|
2016-11-03 12:29:30 +05:30
|
|
|
build.run_after_commit do
|
|
|
|
BuildHooksWorker.perform_async(id)
|
|
|
|
end
|
2015-12-23 02:04:40 +05:30
|
|
|
end
|
2015-09-25 12:07:36 +05:30
|
|
|
|
2016-04-02 18:10:28 +05:30
|
|
|
after_transition any => [:success, :failed, :canceled] do |build|
|
2016-11-03 12:29:30 +05:30
|
|
|
build.run_after_commit do
|
|
|
|
BuildFinishedWorker.perform_async(id)
|
|
|
|
end
|
2015-09-25 12:07:36 +05:30
|
|
|
end
|
2016-06-16 23:09:34 +05:30
|
|
|
|
|
|
|
after_transition any => [:success] do |build|
|
2018-12-13 13:39:08 +05:30
|
|
|
build.deployment&.succeed
|
|
|
|
|
2016-11-03 12:29:30 +05:30
|
|
|
build.run_after_commit do
|
|
|
|
BuildSuccessWorker.perform_async(id)
|
2018-11-08 19:23:39 +05:30
|
|
|
PagesWorker.perform_async(:deploy, id) if build.pages_generator?
|
2016-06-16 23:09:34 +05:30
|
|
|
end
|
|
|
|
end
|
2017-09-10 17:25:29 +05:30
|
|
|
|
|
|
|
before_transition any => [:failed] do |build|
|
2018-03-17 18:26:18 +05:30
|
|
|
next unless build.project
|
2017-09-10 17:25:29 +05:30
|
|
|
|
2018-12-13 13:39:08 +05:30
|
|
|
build.deployment&.drop
|
|
|
|
|
|
|
|
if build.retry_failure?
|
2018-04-04 21:44:52 +05:30
|
|
|
begin
|
|
|
|
Ci::Build.retry(build, build.user)
|
|
|
|
rescue Gitlab::Access::AccessDeniedError => ex
|
|
|
|
Rails.logger.error "Unable to auto-retry job #{build.id}: #{ex}"
|
|
|
|
end
|
2017-09-10 17:25:29 +05:30
|
|
|
end
|
|
|
|
end
|
2018-03-17 18:26:18 +05:30
|
|
|
|
2018-05-09 12:01:36 +05:30
|
|
|
after_transition pending: :running do |build|
|
|
|
|
build.ensure_metadata.update_timeout_state
|
|
|
|
end
|
2018-11-08 19:23:39 +05:30
|
|
|
|
|
|
|
after_transition running: any do |build|
|
|
|
|
Ci::BuildRunnerSession.where(build: build).delete_all
|
|
|
|
end
|
2018-12-13 13:39:08 +05:30
|
|
|
|
|
|
|
after_transition any => [:skipped, :canceled] do |build|
|
|
|
|
build.deployment&.cancel
|
|
|
|
end
|
2018-05-09 12:01:36 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
def ensure_metadata
|
|
|
|
metadata || build_metadata(project: project)
|
2015-09-25 12:07:36 +05:30
|
|
|
end
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
def detailed_status(current_user)
|
|
|
|
Gitlab::Ci::Status::Build::Factory
|
|
|
|
.new(self, current_user)
|
|
|
|
.fabricate!
|
2016-08-24 12:49:21 +05:30
|
|
|
end
|
|
|
|
|
2018-12-13 13:39:08 +05:30
|
|
|
def other_manual_actions
|
2016-08-24 12:49:21 +05:30
|
|
|
pipeline.manual_actions.where.not(name: name)
|
|
|
|
end
|
|
|
|
|
2018-12-13 13:39:08 +05:30
|
|
|
def other_scheduled_actions
|
|
|
|
pipeline.scheduled_actions.where.not(name: name)
|
|
|
|
end
|
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
def pages_generator?
|
|
|
|
Gitlab.config.pages.enabled &&
|
|
|
|
self.name == 'pages'
|
|
|
|
end
|
|
|
|
|
2018-12-13 13:39:08 +05:30
|
|
|
# degenerated build is one that cannot be run by Runner
|
|
|
|
def degenerated?
|
|
|
|
self.options.nil?
|
|
|
|
end
|
|
|
|
|
|
|
|
def degenerate!
|
|
|
|
self.update!(options: nil, yaml_variables: nil, commands: nil)
|
|
|
|
end
|
|
|
|
|
|
|
|
def archived?
|
|
|
|
return true if degenerated?
|
|
|
|
|
|
|
|
archive_builds_older_than = Gitlab::CurrentSettings.current_application_settings.archive_builds_older_than
|
|
|
|
archive_builds_older_than.present? && created_at < archive_builds_older_than
|
|
|
|
end
|
|
|
|
|
2016-08-24 12:49:21 +05:30
|
|
|
def playable?
|
2018-12-13 13:39:08 +05:30
|
|
|
action? && !archived? && (manual? || scheduled? || retryable?)
|
2018-12-05 23:21:45 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
def schedulable?
|
2018-12-13 13:39:08 +05:30
|
|
|
self.when == 'delayed' && options[:start_in].present?
|
2018-12-05 23:21:45 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
def options_scheduled_at
|
|
|
|
ChronicDuration.parse(options[:start_in])&.seconds&.from_now
|
2016-08-24 12:49:21 +05:30
|
|
|
end
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
def action?
|
2018-12-05 23:21:45 +05:30
|
|
|
%w[manual delayed].include?(self.when)
|
2017-08-17 22:00:37 +05:30
|
|
|
end
|
|
|
|
|
2018-12-05 23:21:45 +05:30
|
|
|
# rubocop: disable CodeReuse/ServiceClass
|
2017-08-17 22:00:37 +05:30
|
|
|
def play(current_user)
|
|
|
|
Ci::PlayBuildService
|
|
|
|
.new(project, current_user)
|
|
|
|
.execute(self)
|
|
|
|
end
|
2018-12-05 23:21:45 +05:30
|
|
|
# rubocop: enable CodeReuse/ServiceClass
|
2017-08-17 22:00:37 +05:30
|
|
|
|
|
|
|
def cancelable?
|
2018-11-20 20:47:30 +05:30
|
|
|
active? || created?
|
2016-08-24 12:49:21 +05:30
|
|
|
end
|
|
|
|
|
2015-11-26 14:37:03 +05:30
|
|
|
def retryable?
|
2018-12-13 13:39:08 +05:30
|
|
|
!archived? && (success? || failed? || canceled?)
|
2017-08-17 22:00:37 +05:30
|
|
|
end
|
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
def retries_count
|
|
|
|
pipeline.builds.retried.where(name: self.name).count
|
|
|
|
end
|
|
|
|
|
|
|
|
def retries_max
|
2018-12-13 13:39:08 +05:30
|
|
|
normalized_retry.fetch(:max, 0)
|
|
|
|
end
|
|
|
|
|
|
|
|
def retry_when
|
|
|
|
normalized_retry.fetch(:when, ['always'])
|
|
|
|
end
|
|
|
|
|
|
|
|
def retry_failure?
|
|
|
|
return false if retries_max.zero? || retries_count >= retries_max
|
|
|
|
|
|
|
|
retry_when.include?('always') || retry_when.include?(failure_reason.to_s)
|
2017-09-10 17:25:29 +05:30
|
|
|
end
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
def latest?
|
|
|
|
!retried?
|
|
|
|
end
|
|
|
|
|
|
|
|
def expanded_environment_name
|
2018-05-09 12:01:36 +05:30
|
|
|
return unless has_environment?
|
|
|
|
|
|
|
|
strong_memoize(:expanded_environment_name) do
|
|
|
|
ExpandVariables.expand(environment, simple_variables)
|
|
|
|
end
|
2015-11-26 14:37:03 +05:30
|
|
|
end
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
def has_environment?
|
|
|
|
environment.present?
|
|
|
|
end
|
|
|
|
|
|
|
|
def starts_environment?
|
|
|
|
has_environment? && self.environment_action == 'start'
|
|
|
|
end
|
|
|
|
|
|
|
|
def stops_environment?
|
|
|
|
has_environment? && self.environment_action == 'stop'
|
|
|
|
end
|
|
|
|
|
|
|
|
def environment_action
|
|
|
|
self.options.fetch(:environment, {}).fetch(:action, 'start') if self.options
|
|
|
|
end
|
|
|
|
|
2018-12-13 13:39:08 +05:30
|
|
|
def has_deployment?
|
|
|
|
!!self.deployment
|
|
|
|
end
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
def outdated_deployment?
|
2018-12-13 13:39:08 +05:30
|
|
|
success? && !deployment.try(:last?)
|
2015-11-26 14:37:03 +05:30
|
|
|
end
|
|
|
|
|
2016-01-19 16:12:03 +05:30
|
|
|
def depends_on_builds
|
|
|
|
# Get builds of the same type
|
2016-06-16 23:09:34 +05:30
|
|
|
latest_builds = self.pipeline.builds.latest
|
2016-01-19 16:12:03 +05:30
|
|
|
|
|
|
|
# Return builds from previous stages
|
|
|
|
latest_builds.where('stage_idx < ?', stage_idx)
|
|
|
|
end
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
def triggered_by?(current_user)
|
|
|
|
user == current_user
|
|
|
|
end
|
|
|
|
|
2018-12-13 13:39:08 +05:30
|
|
|
def on_stop
|
|
|
|
options&.dig(:environment, :on_stop)
|
|
|
|
end
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
# A slugified version of the build ref, suitable for inclusion in URLs and
|
|
|
|
# domain names. Rules:
|
|
|
|
#
|
|
|
|
# * Lowercased
|
|
|
|
# * Anything not matching [a-z0-9-] is replaced with a -
|
|
|
|
# * Maximum length is 63 bytes
|
2017-09-10 17:25:29 +05:30
|
|
|
# * First/Last Character is not a hyphen
|
2017-08-17 22:00:37 +05:30
|
|
|
def ref_slug
|
2018-03-17 18:26:18 +05:30
|
|
|
Gitlab::Utils.slugify(ref.to_s)
|
2017-08-17 22:00:37 +05:30
|
|
|
end
|
|
|
|
|
2018-05-09 12:01:36 +05:30
|
|
|
##
|
|
|
|
# Variables in the environment name scope.
|
|
|
|
#
|
|
|
|
def scoped_variables(environment: expanded_environment_name)
|
|
|
|
Gitlab::Ci::Variables::Collection.new.tap do |variables|
|
|
|
|
variables.concat(predefined_variables)
|
|
|
|
variables.concat(project.predefined_variables)
|
|
|
|
variables.concat(pipeline.predefined_variables)
|
|
|
|
variables.concat(runner.predefined_variables) if runner
|
|
|
|
variables.concat(project.deployment_variables(environment: environment)) if environment
|
|
|
|
variables.concat(yaml_variables)
|
|
|
|
variables.concat(user_variables)
|
|
|
|
variables.concat(secret_group_variables)
|
|
|
|
variables.concat(secret_project_variables(environment: environment))
|
|
|
|
variables.concat(trigger_request.user_variables) if trigger_request
|
|
|
|
variables.concat(pipeline.variables)
|
|
|
|
variables.concat(pipeline.pipeline_schedule.job_variables) if pipeline.pipeline_schedule
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
##
|
|
|
|
# Variables that do not depend on the environment name.
|
|
|
|
#
|
2017-08-17 22:00:37 +05:30
|
|
|
def simple_variables
|
2018-05-09 12:01:36 +05:30
|
|
|
strong_memoize(:simple_variables) do
|
|
|
|
scoped_variables(environment: nil).to_runner_variables
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
##
|
|
|
|
# All variables, including persisted environment variables.
|
|
|
|
#
|
|
|
|
def variables
|
|
|
|
Gitlab::Ci::Variables::Collection.new
|
|
|
|
.concat(persisted_variables)
|
|
|
|
.concat(scoped_variables)
|
|
|
|
.concat(persisted_environment_variables)
|
|
|
|
.to_runner_variables
|
|
|
|
end
|
|
|
|
|
|
|
|
##
|
|
|
|
# Regular Ruby hash of scoped variables, without duplicates that are
|
|
|
|
# possible to be present in an array of hashes returned from `variables`.
|
|
|
|
#
|
|
|
|
def scoped_variables_hash
|
|
|
|
scoped_variables.to_hash
|
2017-08-17 22:00:37 +05:30
|
|
|
end
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
def features
|
|
|
|
{ trace_sections: true }
|
|
|
|
end
|
|
|
|
|
2016-01-14 18:37:52 +05:30
|
|
|
def merge_request
|
2017-09-10 17:25:29 +05:30
|
|
|
return @merge_request if defined?(@merge_request)
|
|
|
|
|
|
|
|
@merge_request ||=
|
|
|
|
begin
|
2018-03-17 18:26:18 +05:30
|
|
|
merge_requests = MergeRequest.includes(:latest_merge_request_diff)
|
2017-09-10 17:25:29 +05:30
|
|
|
.where(source_branch: ref,
|
|
|
|
source_project: pipeline.project)
|
|
|
|
.reorder(iid: :desc)
|
|
|
|
|
|
|
|
merge_requests.find do |merge_request|
|
|
|
|
merge_request.commit_shas.include?(pipeline.sha)
|
|
|
|
end
|
|
|
|
end
|
2015-09-25 12:07:36 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
def repo_url
|
2019-01-03 12:48:30 +05:30
|
|
|
auth = "gitlab-ci-token:#{ensure_token!}@"
|
2018-03-17 18:26:18 +05:30
|
|
|
project.http_url_to_repo.sub(%r{^https?://}) do |prefix|
|
2015-12-23 02:04:40 +05:30
|
|
|
prefix + auth
|
|
|
|
end
|
2015-09-25 12:07:36 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
def allow_git_fetch
|
2015-12-23 02:04:40 +05:30
|
|
|
project.build_allow_git_fetch
|
2015-09-25 12:07:36 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
def update_coverage
|
2017-08-17 22:00:37 +05:30
|
|
|
coverage = trace.extract_coverage(coverage_regex)
|
2018-11-18 11:00:15 +05:30
|
|
|
update(coverage: coverage) if coverage.present?
|
2015-09-25 12:07:36 +05:30
|
|
|
end
|
|
|
|
|
2018-12-05 23:21:45 +05:30
|
|
|
# rubocop: disable CodeReuse/ServiceClass
|
2018-03-17 18:26:18 +05:30
|
|
|
def parse_trace_sections!
|
|
|
|
ExtractSectionsFromBuildTraceService.new(project, user).execute(self)
|
|
|
|
end
|
2018-12-05 23:21:45 +05:30
|
|
|
# rubocop: enable CodeReuse/ServiceClass
|
2018-03-17 18:26:18 +05:30
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
def trace
|
|
|
|
Gitlab::Ci::Trace.new(self)
|
2016-09-29 09:46:39 +05:30
|
|
|
end
|
|
|
|
|
2016-04-02 18:10:28 +05:30
|
|
|
def has_trace?
|
2017-08-17 22:00:37 +05:30
|
|
|
trace.exist?
|
2016-06-02 11:05:42 +05:30
|
|
|
end
|
2015-09-25 12:07:36 +05:30
|
|
|
|
2018-12-05 23:21:45 +05:30
|
|
|
def has_job_artifacts?
|
|
|
|
job_artifacts.any?
|
2018-11-18 11:00:15 +05:30
|
|
|
end
|
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
def has_old_trace?
|
|
|
|
old_trace.present?
|
|
|
|
end
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
def trace=(data)
|
|
|
|
raise NotImplementedError
|
2015-09-25 12:07:36 +05:30
|
|
|
end
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
def old_trace
|
|
|
|
read_attribute(:trace)
|
2015-09-25 12:07:36 +05:30
|
|
|
end
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
def erase_old_trace!
|
2018-11-08 19:23:39 +05:30
|
|
|
return unless has_old_trace?
|
|
|
|
|
2018-04-04 21:44:52 +05:30
|
|
|
update_column(:trace, nil)
|
2016-01-14 18:37:52 +05:30
|
|
|
end
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
def needs_touch?
|
|
|
|
Time.now - updated_at > 15.minutes.to_i
|
2016-01-14 18:37:52 +05:30
|
|
|
end
|
|
|
|
|
2016-06-16 23:09:34 +05:30
|
|
|
def valid_token?(token)
|
2016-09-29 09:46:39 +05:30
|
|
|
self.token && ActiveSupport::SecurityUtils.variable_size_secure_compare(token, self.token)
|
2015-11-26 14:37:03 +05:30
|
|
|
end
|
|
|
|
|
2016-06-02 11:05:42 +05:30
|
|
|
def has_tags?
|
|
|
|
tag_list.any?
|
2015-10-24 18:46:33 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
def any_runners_online?
|
2016-06-22 15:30:34 +05:30
|
|
|
project.any_runners? { |runner| runner.active? && runner.online? && runner.can_pick?(self) }
|
2015-10-24 18:46:33 +05:30
|
|
|
end
|
|
|
|
|
2016-06-02 11:05:42 +05:30
|
|
|
def stuck?
|
2015-10-24 18:46:33 +05:30
|
|
|
pending? && !any_runners_online?
|
|
|
|
end
|
|
|
|
|
2015-12-23 02:04:40 +05:30
|
|
|
def execute_hooks
|
2016-04-02 18:10:28 +05:30
|
|
|
return unless project
|
2018-03-17 18:26:18 +05:30
|
|
|
|
2016-09-13 17:45:13 +05:30
|
|
|
build_data = Gitlab::DataBuilder::Build.build(self)
|
2017-09-10 17:25:29 +05:30
|
|
|
project.execute_hooks(build_data.dup, :job_hooks)
|
|
|
|
project.execute_services(build_data.dup, :job_hooks)
|
2015-12-23 02:04:40 +05:30
|
|
|
end
|
|
|
|
|
2018-05-09 12:01:36 +05:30
|
|
|
def browsable_artifacts?
|
|
|
|
artifacts_metadata?
|
|
|
|
end
|
|
|
|
|
2016-01-29 22:53:50 +05:30
|
|
|
def artifacts_metadata_entry(path, **options)
|
2018-11-18 11:00:15 +05:30
|
|
|
artifacts_metadata.open do |metadata_stream|
|
2018-05-09 12:01:36 +05:30
|
|
|
metadata = Gitlab::Ci::Build::Artifacts::Metadata.new(
|
2018-11-18 11:00:15 +05:30
|
|
|
metadata_stream,
|
2018-05-09 12:01:36 +05:30
|
|
|
path,
|
|
|
|
**options)
|
2016-08-24 12:49:21 +05:30
|
|
|
|
2018-05-09 12:01:36 +05:30
|
|
|
metadata.to_entry
|
|
|
|
end
|
2016-01-19 16:12:03 +05:30
|
|
|
end
|
2015-12-23 02:04:40 +05:30
|
|
|
|
2018-12-05 23:21:45 +05:30
|
|
|
# and use that for `ExpireBuildInstanceArtifactsWorker`?
|
|
|
|
def erase_erasable_artifacts!
|
|
|
|
job_artifacts.erasable.destroy_all # rubocop: disable DestroyAll
|
|
|
|
erase_old_artifacts!
|
2018-11-18 11:00:15 +05:30
|
|
|
end
|
|
|
|
|
2016-04-02 18:10:28 +05:30
|
|
|
def erase(opts = {})
|
|
|
|
return false unless erasable?
|
|
|
|
|
2018-12-05 23:21:45 +05:30
|
|
|
job_artifacts.destroy_all # rubocop: disable DestroyAll
|
|
|
|
erase_old_artifacts!
|
2016-04-02 18:10:28 +05:30
|
|
|
erase_trace!
|
|
|
|
update_erased!(opts[:erased_by])
|
|
|
|
end
|
|
|
|
|
|
|
|
def erasable?
|
2018-12-05 23:21:45 +05:30
|
|
|
complete? && (artifacts? || has_job_artifacts? || has_trace?)
|
2016-04-02 18:10:28 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
def erased?
|
|
|
|
!self.erased_at.nil?
|
|
|
|
end
|
|
|
|
|
2016-06-16 23:09:34 +05:30
|
|
|
def artifacts_expired?
|
|
|
|
artifacts_expire_at && artifacts_expire_at < Time.now
|
|
|
|
end
|
|
|
|
|
|
|
|
def artifacts_expire_in
|
|
|
|
artifacts_expire_at - Time.now if artifacts_expire_at
|
|
|
|
end
|
|
|
|
|
|
|
|
def artifacts_expire_in=(value)
|
|
|
|
self.artifacts_expire_at =
|
|
|
|
if value
|
2017-08-17 22:00:37 +05:30
|
|
|
ChronicDuration.parse(value)&.seconds&.from_now
|
2016-06-16 23:09:34 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
def has_expiring_artifacts?
|
2017-09-10 17:25:29 +05:30
|
|
|
artifacts_expire_at.present? && artifacts_expire_at > Time.now
|
2017-08-17 22:00:37 +05:30
|
|
|
end
|
|
|
|
|
2016-06-16 23:09:34 +05:30
|
|
|
def keep_artifacts!
|
|
|
|
self.update(artifacts_expire_at: nil)
|
2018-03-17 18:26:18 +05:30
|
|
|
self.job_artifacts.update_all(expire_at: nil)
|
2016-06-16 23:09:34 +05:30
|
|
|
end
|
|
|
|
|
2018-12-05 23:21:45 +05:30
|
|
|
def artifacts_file_for_type(type)
|
|
|
|
file = job_artifacts.find_by(file_type: Ci::JobArtifact.file_types[type])&.file
|
|
|
|
# TODO: to be removed once legacy artifacts is removed
|
|
|
|
file ||= legacy_artifacts_file if type == :archive
|
|
|
|
file
|
|
|
|
end
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
def coverage_regex
|
|
|
|
super || project.try(:build_coverage_regex)
|
|
|
|
end
|
|
|
|
|
2016-08-24 12:49:21 +05:30
|
|
|
def when
|
|
|
|
read_attribute(:when) || build_attributes_from_config[:when] || 'on_success'
|
2016-04-02 18:10:28 +05:30
|
|
|
end
|
|
|
|
|
2015-09-25 12:07:36 +05:30
|
|
|
def yaml_variables
|
2016-08-24 12:49:21 +05:30
|
|
|
read_attribute(:yaml_variables) || build_attributes_from_config[:yaml_variables] || []
|
2016-06-02 11:05:42 +05:30
|
|
|
end
|
|
|
|
|
2016-09-29 09:46:39 +05:30
|
|
|
def user_variables
|
2018-05-09 12:01:36 +05:30
|
|
|
Gitlab::Ci::Variables::Collection.new.tap do |variables|
|
2018-10-15 14:42:47 +05:30
|
|
|
break variables if user.blank?
|
2016-09-29 09:46:39 +05:30
|
|
|
|
2018-05-09 12:01:36 +05:30
|
|
|
variables.append(key: 'GITLAB_USER_ID', value: user.id.to_s)
|
|
|
|
variables.append(key: 'GITLAB_USER_EMAIL', value: user.email)
|
|
|
|
variables.append(key: 'GITLAB_USER_LOGIN', value: user.username)
|
|
|
|
variables.append(key: 'GITLAB_USER_NAME', value: user.name)
|
|
|
|
end
|
2016-09-29 09:46:39 +05:30
|
|
|
end
|
|
|
|
|
2018-05-09 12:01:36 +05:30
|
|
|
def secret_group_variables
|
|
|
|
return [] unless project.group
|
|
|
|
|
2019-01-03 12:48:30 +05:30
|
|
|
project.group.ci_variables_for(git_ref, project)
|
2018-05-09 12:01:36 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
def secret_project_variables(environment: persisted_environment)
|
2019-01-03 12:48:30 +05:30
|
|
|
project.ci_variables_for(ref: git_ref, environment: environment)
|
2017-09-10 17:25:29 +05:30
|
|
|
end
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
def steps
|
|
|
|
[Gitlab::Ci::Build::Step.from_commands(self),
|
|
|
|
Gitlab::Ci::Build::Step.from_after_script(self)].compact
|
|
|
|
end
|
|
|
|
|
|
|
|
def image
|
|
|
|
Gitlab::Ci::Build::Image.from_image(self)
|
|
|
|
end
|
|
|
|
|
|
|
|
def services
|
|
|
|
Gitlab::Ci::Build::Image.from_services(self)
|
|
|
|
end
|
|
|
|
|
|
|
|
def cache
|
2018-03-17 18:26:18 +05:30
|
|
|
cache = options[:cache]
|
|
|
|
|
|
|
|
if cache && project.jobs_cache_index
|
|
|
|
cache = cache.merge(
|
|
|
|
key: "#{cache[:key]}-#{project.jobs_cache_index}")
|
|
|
|
end
|
|
|
|
|
|
|
|
[cache]
|
2017-08-17 22:00:37 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
def credentials
|
|
|
|
Gitlab::Ci::Build::Credentials::Factory.new(self).create!
|
|
|
|
end
|
|
|
|
|
|
|
|
def dependencies
|
|
|
|
return [] if empty_dependencies?
|
|
|
|
|
|
|
|
depended_jobs = depends_on_builds
|
|
|
|
|
|
|
|
return depended_jobs unless options[:dependencies].present?
|
|
|
|
|
|
|
|
depended_jobs.select do |job|
|
|
|
|
options[:dependencies].include?(job.name)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def empty_dependencies?
|
|
|
|
options[:dependencies]&.empty?
|
|
|
|
end
|
|
|
|
|
2018-11-18 11:00:15 +05:30
|
|
|
def has_valid_build_dependencies?
|
|
|
|
return true if Feature.enabled?('ci_disable_validates_dependencies')
|
|
|
|
|
|
|
|
dependencies.all?(&:valid_dependency?)
|
2018-03-17 18:26:18 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
def valid_dependency?
|
|
|
|
return false if artifacts_expired?
|
|
|
|
return false if erased?
|
|
|
|
|
|
|
|
true
|
|
|
|
end
|
|
|
|
|
2018-11-18 11:00:15 +05:30
|
|
|
def runner_required_feature_names
|
|
|
|
strong_memoize(:runner_required_feature_names) do
|
|
|
|
RUNNER_FEATURES.select do |feature, method|
|
|
|
|
method.call(self)
|
|
|
|
end.keys
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def supported_runner?(features)
|
|
|
|
runner_required_feature_names.all? do |feature_name|
|
|
|
|
features&.dig(feature_name)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def publishes_artifacts_reports?
|
|
|
|
options&.dig(:artifacts, :reports)&.any?
|
|
|
|
end
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
def hide_secrets(trace)
|
|
|
|
return unless trace
|
|
|
|
|
|
|
|
trace = trace.dup
|
2018-03-17 18:26:18 +05:30
|
|
|
Gitlab::Ci::MaskSecret.mask!(trace, project.runners_token) if project
|
2019-01-03 12:48:30 +05:30
|
|
|
Gitlab::Ci::MaskSecret.mask!(trace, token)
|
2017-08-17 22:00:37 +05:30
|
|
|
trace
|
|
|
|
end
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
def serializable_hash(options = {})
|
|
|
|
super(options).merge(when: read_attribute(:when))
|
|
|
|
end
|
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
def has_terminal?
|
|
|
|
running? && runner_session_url.present?
|
|
|
|
end
|
|
|
|
|
2018-11-18 11:00:15 +05:30
|
|
|
def collect_test_reports!(test_reports)
|
|
|
|
test_reports.get_suite(group_name).tap do |test_suite|
|
2018-12-05 23:21:45 +05:30
|
|
|
each_report(Ci::JobArtifact::TEST_REPORT_FILE_TYPES) do |file_type, blob|
|
|
|
|
Gitlab::Ci::Parsers::Test.fabricate!(file_type).parse!(blob, test_suite)
|
2018-11-18 11:00:15 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-12-05 23:21:45 +05:30
|
|
|
# Virtual deployment status depending on the environment status.
|
|
|
|
def deployment_status
|
|
|
|
return nil unless starts_environment?
|
|
|
|
|
|
|
|
if success?
|
|
|
|
return successful_deployment_status
|
2018-12-13 13:39:08 +05:30
|
|
|
elsif failed?
|
2018-12-05 23:21:45 +05:30
|
|
|
return :failed
|
|
|
|
end
|
|
|
|
|
|
|
|
:creating
|
|
|
|
end
|
|
|
|
|
2016-08-24 12:49:21 +05:30
|
|
|
private
|
2016-06-02 11:05:42 +05:30
|
|
|
|
2018-12-05 23:21:45 +05:30
|
|
|
def erase_old_artifacts!
|
|
|
|
# TODO: To be removed once we get rid of
|
|
|
|
remove_artifacts_file!
|
|
|
|
remove_artifacts_metadata!
|
|
|
|
save
|
|
|
|
end
|
|
|
|
|
|
|
|
def successful_deployment_status
|
2018-12-13 13:39:08 +05:30
|
|
|
if deployment&.last?
|
|
|
|
:last
|
|
|
|
else
|
|
|
|
:out_of_date
|
2018-12-05 23:21:45 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def each_report(report_types)
|
|
|
|
job_artifacts_for_types(report_types).each do |report_artifact|
|
|
|
|
report_artifact.each_blob do |blob|
|
|
|
|
yield report_artifact.file_type, blob
|
2018-11-18 11:00:15 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-12-05 23:21:45 +05:30
|
|
|
def job_artifacts_for_types(report_types)
|
|
|
|
# Use select to leverage cached associations and avoid N+1 queries
|
|
|
|
job_artifacts.select { |artifact| artifact.file_type.in?(report_types) }
|
|
|
|
end
|
|
|
|
|
2016-08-24 12:49:21 +05:30
|
|
|
def update_artifacts_size
|
2018-03-17 18:26:18 +05:30
|
|
|
self.artifacts_size = legacy_artifacts_file&.size
|
2015-09-25 12:07:36 +05:30
|
|
|
end
|
|
|
|
|
2016-08-24 12:49:21 +05:30
|
|
|
def erase_trace!
|
2017-08-17 22:00:37 +05:30
|
|
|
trace.erase!
|
2015-09-25 12:07:36 +05:30
|
|
|
end
|
|
|
|
|
2016-08-24 12:49:21 +05:30
|
|
|
def update_erased!(user = nil)
|
|
|
|
self.update(erased_by: user, erased_at: Time.now, artifacts_expire_at: nil)
|
2015-09-25 12:07:36 +05:30
|
|
|
end
|
2015-10-24 18:46:33 +05:30
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
def unscoped_project
|
|
|
|
@unscoped_project ||= Project.unscoped.find_by(id: project_id)
|
|
|
|
end
|
|
|
|
|
|
|
|
CI_REGISTRY_USER = 'gitlab-ci-token'.freeze
|
|
|
|
|
2018-05-09 12:01:36 +05:30
|
|
|
def persisted_variables
|
|
|
|
Gitlab::Ci::Variables::Collection.new.tap do |variables|
|
2018-10-15 14:42:47 +05:30
|
|
|
break variables unless persisted?
|
2018-05-09 12:01:36 +05:30
|
|
|
|
|
|
|
variables
|
2018-11-08 19:23:39 +05:30
|
|
|
.concat(pipeline.persisted_variables)
|
2018-05-09 12:01:36 +05:30
|
|
|
.append(key: 'CI_JOB_ID', value: id.to_s)
|
2018-11-08 19:23:39 +05:30
|
|
|
.append(key: 'CI_JOB_URL', value: Gitlab::Routing.url_helpers.project_job_url(project, self))
|
2019-01-03 12:48:30 +05:30
|
|
|
.append(key: 'CI_JOB_TOKEN', value: token, public: false)
|
2018-05-09 12:01:36 +05:30
|
|
|
.append(key: 'CI_BUILD_ID', value: id.to_s)
|
2019-01-03 12:48:30 +05:30
|
|
|
.append(key: 'CI_BUILD_TOKEN', value: token, public: false)
|
2018-05-09 12:01:36 +05:30
|
|
|
.append(key: 'CI_REGISTRY_USER', value: CI_REGISTRY_USER)
|
2019-01-03 12:48:30 +05:30
|
|
|
.append(key: 'CI_REGISTRY_PASSWORD', value: token, public: false)
|
|
|
|
.append(key: 'CI_REPOSITORY_URL', value: repo_url, public: false)
|
2018-10-15 14:42:47 +05:30
|
|
|
.concat(deploy_token_variables)
|
2018-05-09 12:01:36 +05:30
|
|
|
end
|
2017-08-17 22:00:37 +05:30
|
|
|
end
|
|
|
|
|
2018-12-13 13:39:08 +05:30
|
|
|
def predefined_variables # rubocop:disable Metrics/AbcSize
|
2018-05-09 12:01:36 +05:30
|
|
|
Gitlab::Ci::Variables::Collection.new.tap do |variables|
|
|
|
|
variables.append(key: 'CI', value: 'true')
|
|
|
|
variables.append(key: 'GITLAB_CI', value: 'true')
|
2018-10-15 14:42:47 +05:30
|
|
|
variables.append(key: 'GITLAB_FEATURES', value: project.licensed_features.join(','))
|
2018-05-09 12:01:36 +05:30
|
|
|
variables.append(key: 'CI_SERVER_NAME', value: 'GitLab')
|
|
|
|
variables.append(key: 'CI_SERVER_VERSION', value: Gitlab::VERSION)
|
2019-01-03 12:48:30 +05:30
|
|
|
variables.append(key: 'CI_SERVER_VERSION_MAJOR', value: gitlab_version_info.major.to_s)
|
|
|
|
variables.append(key: 'CI_SERVER_VERSION_MINOR', value: gitlab_version_info.minor.to_s)
|
|
|
|
variables.append(key: 'CI_SERVER_VERSION_PATCH', value: gitlab_version_info.patch.to_s)
|
2018-10-15 14:42:47 +05:30
|
|
|
variables.append(key: 'CI_SERVER_REVISION', value: Gitlab.revision)
|
2018-05-09 12:01:36 +05:30
|
|
|
variables.append(key: 'CI_JOB_NAME', value: name)
|
|
|
|
variables.append(key: 'CI_JOB_STAGE', value: stage)
|
|
|
|
variables.append(key: 'CI_COMMIT_SHA', value: sha)
|
2018-11-18 11:00:15 +05:30
|
|
|
variables.append(key: 'CI_COMMIT_BEFORE_SHA', value: before_sha)
|
2018-05-09 12:01:36 +05:30
|
|
|
variables.append(key: 'CI_COMMIT_REF_NAME', value: ref)
|
|
|
|
variables.append(key: 'CI_COMMIT_REF_SLUG', value: ref_slug)
|
|
|
|
variables.append(key: "CI_COMMIT_TAG", value: ref) if tag?
|
|
|
|
variables.append(key: "CI_PIPELINE_TRIGGERED", value: 'true') if trigger_request
|
|
|
|
variables.append(key: "CI_JOB_MANUAL", value: 'true') if action?
|
2018-12-13 13:39:08 +05:30
|
|
|
variables.append(key: "CI_NODE_INDEX", value: self.options[:instance].to_s) if self.options&.include?(:instance)
|
|
|
|
variables.append(key: "CI_NODE_TOTAL", value: (self.options&.dig(:parallel) || 1).to_s)
|
2018-05-09 12:01:36 +05:30
|
|
|
variables.concat(legacy_variables)
|
|
|
|
end
|
|
|
|
end
|
2017-09-10 17:25:29 +05:30
|
|
|
|
2019-01-03 12:48:30 +05:30
|
|
|
def gitlab_version_info
|
|
|
|
@gitlab_version_info ||= Gitlab::VersionInfo.parse(Gitlab::VERSION)
|
|
|
|
end
|
|
|
|
|
2018-05-09 12:01:36 +05:30
|
|
|
def legacy_variables
|
|
|
|
Gitlab::Ci::Variables::Collection.new.tap do |variables|
|
|
|
|
variables.append(key: 'CI_BUILD_REF', value: sha)
|
|
|
|
variables.append(key: 'CI_BUILD_BEFORE_SHA', value: before_sha)
|
|
|
|
variables.append(key: 'CI_BUILD_REF_NAME', value: ref)
|
|
|
|
variables.append(key: 'CI_BUILD_REF_SLUG', value: ref_slug)
|
|
|
|
variables.append(key: 'CI_BUILD_NAME', value: name)
|
|
|
|
variables.append(key: 'CI_BUILD_STAGE', value: stage)
|
|
|
|
variables.append(key: "CI_BUILD_TAG", value: ref) if tag?
|
|
|
|
variables.append(key: "CI_BUILD_TRIGGERED", value: 'true') if trigger_request
|
|
|
|
variables.append(key: "CI_BUILD_MANUAL", value: 'true') if action?
|
|
|
|
end
|
|
|
|
end
|
2017-09-10 17:25:29 +05:30
|
|
|
|
2018-05-09 12:01:36 +05:30
|
|
|
def persisted_environment_variables
|
|
|
|
Gitlab::Ci::Variables::Collection.new.tap do |variables|
|
2018-10-15 14:42:47 +05:30
|
|
|
break variables unless persisted? && persisted_environment.present?
|
2017-09-10 17:25:29 +05:30
|
|
|
|
2018-05-09 12:01:36 +05:30
|
|
|
variables.concat(persisted_environment.predefined_variables)
|
2017-09-10 17:25:29 +05:30
|
|
|
|
2018-05-09 12:01:36 +05:30
|
|
|
# Here we're passing unexpanded environment_url for runner to expand,
|
|
|
|
# and we need to make sure that CI_ENVIRONMENT_NAME and
|
|
|
|
# CI_ENVIRONMENT_SLUG so on are available for the URL be expanded.
|
|
|
|
variables.append(key: 'CI_ENVIRONMENT_URL', value: environment_url) if environment_url
|
|
|
|
end
|
2015-10-24 18:46:33 +05:30
|
|
|
end
|
2016-08-24 12:49:21 +05:30
|
|
|
|
2018-10-15 14:42:47 +05:30
|
|
|
def deploy_token_variables
|
|
|
|
Gitlab::Ci::Variables::Collection.new.tap do |variables|
|
|
|
|
break variables unless gitlab_deploy_token
|
|
|
|
|
|
|
|
variables.append(key: 'CI_DEPLOY_USER', value: gitlab_deploy_token.username)
|
|
|
|
variables.append(key: 'CI_DEPLOY_PASSWORD', value: gitlab_deploy_token.token, public: false)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
def environment_url
|
|
|
|
options&.dig(:environment, :url) || persisted_environment&.external_url
|
|
|
|
end
|
|
|
|
|
2018-12-13 13:39:08 +05:30
|
|
|
# The format of the retry option changed in GitLab 11.5: Before it was
|
|
|
|
# integer only, after it is a hash. New builds are created with the new
|
|
|
|
# format, but builds created before GitLab 11.5 and saved in database still
|
|
|
|
# have the old integer only format. This method returns the retry option
|
|
|
|
# normalized as a hash in 11.5+ format.
|
|
|
|
def normalized_retry
|
|
|
|
value = options&.dig(:retry)
|
|
|
|
value.is_a?(Integer) ? { max: value } : value.to_h
|
|
|
|
end
|
|
|
|
|
2016-08-24 12:49:21 +05:30
|
|
|
def build_attributes_from_config
|
|
|
|
return {} unless pipeline.config_processor
|
2016-09-13 17:45:13 +05:30
|
|
|
|
2016-08-24 12:49:21 +05:30
|
|
|
pipeline.config_processor.build_attributes(name)
|
|
|
|
end
|
2016-09-29 09:46:39 +05:30
|
|
|
|
2018-10-15 14:42:47 +05:30
|
|
|
def update_project_statistics_after_save
|
|
|
|
update_project_statistics(read_attribute(:artifacts_size).to_i - artifacts_size_was.to_i)
|
|
|
|
end
|
2016-09-29 09:46:39 +05:30
|
|
|
|
2018-10-15 14:42:47 +05:30
|
|
|
def update_project_statistics_after_destroy
|
|
|
|
update_project_statistics(-artifacts_size)
|
2016-09-29 09:46:39 +05:30
|
|
|
end
|
2017-09-10 17:25:29 +05:30
|
|
|
|
2018-10-15 14:42:47 +05:30
|
|
|
def update_project_statistics(difference)
|
|
|
|
ProjectStatistics.increment_statistic(project_id, :build_artifacts_size, difference)
|
|
|
|
end
|
|
|
|
|
|
|
|
def project_destroyed?
|
|
|
|
project.pending_delete?
|
2017-09-10 17:25:29 +05:30
|
|
|
end
|
2015-09-25 12:07:36 +05:30
|
|
|
end
|
|
|
|
end
|