2015-09-25 12:07:36 +05:30
|
|
|
module Ci
|
2015-10-24 18:46:33 +05:30
|
|
|
class Build < CommitStatus
|
2016-09-29 09:46:39 +05:30
|
|
|
include TokenAuthenticatable
|
2016-11-03 12:29:30 +05:30
|
|
|
include AfterCommitQueue
|
2017-08-17 22:00:37 +05:30
|
|
|
include Presentable
|
2016-09-29 09:46:39 +05:30
|
|
|
|
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
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
has_many :deployments, as: :deployable
|
|
|
|
has_one :last_deployment, -> { order('deployments.id DESC') }, as: :deployable, class_name: 'Deployment'
|
|
|
|
|
|
|
|
# The "environment" field for builds is a String, and is the unexpanded name
|
|
|
|
def persisted_environment
|
|
|
|
@persisted_environment ||= Environment.find_by(
|
|
|
|
name: expanded_environment_name,
|
|
|
|
project: project
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
2015-09-25 12:07:36 +05:30
|
|
|
serialize :options
|
2017-08-17 22:00:37 +05:30
|
|
|
serialize :yaml_variables, Gitlab::Serializer::Ci::Variables
|
|
|
|
|
|
|
|
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) }
|
2016-08-24 12:49:21 +05:30
|
|
|
scope :with_artifacts, ->() { where.not(artifacts_file: [nil, '']) }
|
2016-09-13 17:45:13 +05:30
|
|
|
scope :with_artifacts_not_expired, ->() { with_artifacts.where('artifacts_expire_at IS NULL OR artifacts_expire_at > ?', Time.now) }
|
2016-06-16 23:09:34 +05:30
|
|
|
scope :with_expired_artifacts, ->() { with_artifacts.where('artifacts_expire_at < ?', Time.now) }
|
2016-08-24 12:49:21 +05:30
|
|
|
scope :last_month, ->() { where('created_at > ?', Date.today - 1.month) }
|
2016-09-13 17:45:13 +05:30
|
|
|
scope :manual_actions, ->() { where(when: :manual).relevant }
|
2015-09-25 12:07:36 +05:30
|
|
|
|
2015-11-26 14:37:03 +05:30
|
|
|
mount_uploader :artifacts_file, ArtifactUploader
|
2016-01-19 16:12:03 +05:30
|
|
|
mount_uploader :artifacts_metadata, ArtifactUploader
|
2015-11-26 14:37:03 +05:30
|
|
|
|
2015-09-25 12:07:36 +05:30
|
|
|
acts_as_taggable
|
|
|
|
|
2016-09-29 09:46:39 +05:30
|
|
|
add_authentication_token_field :token
|
|
|
|
|
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
|
|
|
|
2016-06-02 11:05:42 +05:30
|
|
|
after_create :execute_hooks
|
2017-08-17 22:00:37 +05:30
|
|
|
after_save :update_project_statistics, if: :artifacts_size_changed?
|
|
|
|
after_destroy :update_project_statistics
|
2015-09-25 12:07:36 +05:30
|
|
|
|
2016-06-02 11:05:42 +05:30
|
|
|
class << self
|
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)
|
|
|
|
Ci::RetryBuildService
|
|
|
|
.new(build.project, current_user)
|
|
|
|
.execute(build)
|
2015-09-25 12:07:36 +05:30
|
|
|
end
|
|
|
|
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
|
|
|
|
|
|
|
|
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|
|
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|
|
2016-11-03 12:29:30 +05:30
|
|
|
build.run_after_commit do
|
|
|
|
BuildSuccessWorker.perform_async(id)
|
2016-06-16 23:09:34 +05:30
|
|
|
end
|
|
|
|
end
|
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
|
|
|
|
|
|
|
|
def other_actions
|
|
|
|
pipeline.manual_actions.where.not(name: name)
|
|
|
|
end
|
|
|
|
|
|
|
|
def playable?
|
2017-08-17 22:00:37 +05:30
|
|
|
action? && manual?
|
2016-08-24 12:49:21 +05:30
|
|
|
end
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
def action?
|
|
|
|
self.when == 'manual'
|
|
|
|
end
|
|
|
|
|
|
|
|
def play(current_user)
|
|
|
|
Ci::PlayBuildService
|
|
|
|
.new(project, current_user)
|
|
|
|
.execute(self)
|
|
|
|
end
|
|
|
|
|
|
|
|
def cancelable?
|
|
|
|
active?
|
2016-08-24 12:49:21 +05:30
|
|
|
end
|
|
|
|
|
2015-11-26 14:37:03 +05:30
|
|
|
def retryable?
|
2017-08-17 22:00:37 +05:30
|
|
|
success? || failed? || canceled?
|
|
|
|
end
|
|
|
|
|
|
|
|
def latest?
|
|
|
|
!retried?
|
|
|
|
end
|
|
|
|
|
|
|
|
def expanded_environment_name
|
|
|
|
ExpandVariables.expand(environment, simple_variables) if environment
|
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
|
|
|
|
|
|
|
|
def outdated_deployment?
|
|
|
|
success? && !last_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
|
|
|
|
|
2015-09-25 12:07:36 +05:30
|
|
|
def timeout
|
2015-12-23 02:04:40 +05:30
|
|
|
project.build_timeout
|
2015-09-25 12:07:36 +05:30
|
|
|
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
|
|
|
|
def ref_slug
|
|
|
|
slugified = ref.to_s.downcase
|
|
|
|
slugified.gsub(/[^a-z0-9]/, '-')[0..62]
|
|
|
|
end
|
|
|
|
|
|
|
|
# Variables whose value does not depend on other variables
|
|
|
|
def simple_variables
|
2016-08-24 12:49:21 +05:30
|
|
|
variables = predefined_variables
|
|
|
|
variables += project.predefined_variables
|
|
|
|
variables += pipeline.predefined_variables
|
|
|
|
variables += runner.predefined_variables if runner
|
|
|
|
variables += project.container_registry_variables
|
2017-08-17 22:00:37 +05:30
|
|
|
variables += project.deployment_variables if has_environment?
|
2016-08-24 12:49:21 +05:30
|
|
|
variables += yaml_variables
|
2016-09-29 09:46:39 +05:30
|
|
|
variables += user_variables
|
2016-08-24 12:49:21 +05:30
|
|
|
variables += project.secret_variables
|
|
|
|
variables += trigger_request.user_variables if trigger_request
|
|
|
|
variables
|
2015-09-25 12:07:36 +05:30
|
|
|
end
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
# All variables, including those dependent on other variables
|
|
|
|
def variables
|
|
|
|
variables = simple_variables
|
|
|
|
variables += persisted_environment.predefined_variables if persisted_environment.present?
|
|
|
|
variables
|
|
|
|
end
|
|
|
|
|
2016-01-14 18:37:52 +05:30
|
|
|
def merge_request
|
|
|
|
merge_requests = MergeRequest.includes(:merge_request_diff)
|
2017-08-17 22:00:37 +05:30
|
|
|
.where(source_branch: ref,
|
|
|
|
source_project: pipeline.project)
|
2016-01-14 18:37:52 +05:30
|
|
|
.reorder(iid: :asc)
|
|
|
|
|
|
|
|
merge_requests.find do |merge_request|
|
2017-08-17 22:00:37 +05:30
|
|
|
merge_request.commits_sha.include?(pipeline.sha)
|
2016-01-14 18:37:52 +05:30
|
|
|
end
|
2015-09-25 12:07:36 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
def repo_url
|
2016-09-29 09:46:39 +05:30
|
|
|
auth = "gitlab-ci-token:#{ensure_token!}@"
|
2015-12-23 02:04:40 +05:30
|
|
|
project.http_url_to_repo.sub(/^https?:\/\//) do |prefix|
|
|
|
|
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)
|
|
|
|
update_attributes(coverage: coverage) if coverage.present?
|
2015-09-25 12:07:36 +05:30
|
|
|
end
|
|
|
|
|
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
|
|
|
|
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!
|
|
|
|
write_attribute(:trace, nil)
|
|
|
|
save
|
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
|
|
|
|
|
|
|
|
##
|
|
|
|
# Deprecated
|
|
|
|
#
|
|
|
|
# This contains a hotfix for CI build data integrity, see #4246
|
|
|
|
#
|
|
|
|
# This method is used by `ArtifactUploader` to create a store_dir.
|
|
|
|
# Warning: Uploader uses it after AND before file has been stored.
|
|
|
|
#
|
|
|
|
# This method returns old path to artifacts only if it already exists.
|
|
|
|
#
|
|
|
|
def artifacts_path
|
2017-08-17 22:00:37 +05:30
|
|
|
# We need the project even if it's soft deleted, because whenever
|
|
|
|
# we're really deleting the project, we'll also delete the builds,
|
|
|
|
# and in order to delete the builds, we need to know where to find
|
|
|
|
# the artifacts, which is depending on the data of the project.
|
|
|
|
# We need to retain the project in this case.
|
|
|
|
the_project = project || unscoped_project
|
|
|
|
|
2016-01-14 18:37:52 +05:30
|
|
|
old = File.join(created_at.utc.strftime('%Y_%m'),
|
2017-08-17 22:00:37 +05:30
|
|
|
the_project.ci_id.to_s,
|
2016-01-14 18:37:52 +05:30
|
|
|
id.to_s)
|
|
|
|
|
|
|
|
old_store = File.join(ArtifactUploader.artifacts_path, old)
|
2017-08-17 22:00:37 +05:30
|
|
|
return old if the_project.ci_id && File.directory?(old_store)
|
2016-01-14 18:37:52 +05:30
|
|
|
|
|
|
|
File.join(
|
|
|
|
created_at.utc.strftime('%Y_%m'),
|
2017-08-17 22:00:37 +05:30
|
|
|
the_project.id.to_s,
|
2016-01-14 18:37:52 +05:30
|
|
|
id.to_s
|
|
|
|
)
|
|
|
|
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
|
2016-09-13 17:45:13 +05:30
|
|
|
build_data = Gitlab::DataBuilder::Build.build(self)
|
2015-12-23 02:04:40 +05:30
|
|
|
project.execute_hooks(build_data.dup, :build_hooks)
|
|
|
|
project.execute_services(build_data.dup, :build_hooks)
|
2017-08-17 22:00:37 +05:30
|
|
|
PagesService.new(build_data).execute
|
2016-06-16 23:09:34 +05:30
|
|
|
project.running_or_pending_build_count(force: true)
|
2015-12-23 02:04:40 +05:30
|
|
|
end
|
|
|
|
|
2016-01-19 16:12:03 +05:30
|
|
|
def artifacts?
|
2016-11-03 12:29:30 +05:30
|
|
|
!artifacts_expired? && artifacts_file.exists?
|
2016-01-19 16:12:03 +05:30
|
|
|
end
|
|
|
|
|
2016-01-29 22:53:50 +05:30
|
|
|
def artifacts_metadata?
|
2016-01-19 16:12:03 +05:30
|
|
|
artifacts? && artifacts_metadata.exists?
|
|
|
|
end
|
2015-12-23 02:04:40 +05:30
|
|
|
|
2016-01-29 22:53:50 +05:30
|
|
|
def artifacts_metadata_entry(path, **options)
|
2016-08-24 12:49:21 +05:30
|
|
|
metadata = Gitlab::Ci::Build::Artifacts::Metadata.new(
|
|
|
|
artifacts_metadata.path,
|
|
|
|
path,
|
|
|
|
**options)
|
|
|
|
|
|
|
|
metadata.to_entry
|
2016-01-19 16:12:03 +05:30
|
|
|
end
|
2015-12-23 02:04:40 +05:30
|
|
|
|
2016-06-16 23:09:34 +05:30
|
|
|
def erase_artifacts!
|
|
|
|
remove_artifacts_file!
|
|
|
|
remove_artifacts_metadata!
|
2016-06-22 15:30:34 +05:30
|
|
|
save
|
2016-06-16 23:09:34 +05:30
|
|
|
end
|
|
|
|
|
2016-04-02 18:10:28 +05:30
|
|
|
def erase(opts = {})
|
|
|
|
return false unless erasable?
|
|
|
|
|
2016-06-16 23:09:34 +05:30
|
|
|
erase_artifacts!
|
2016-04-02 18:10:28 +05:30
|
|
|
erase_trace!
|
|
|
|
update_erased!(opts[:erased_by])
|
|
|
|
end
|
|
|
|
|
|
|
|
def erasable?
|
|
|
|
complete? && (artifacts? || has_trace?)
|
|
|
|
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?
|
|
|
|
artifacts_expire_at.present?
|
|
|
|
end
|
|
|
|
|
2016-06-16 23:09:34 +05:30
|
|
|
def keep_artifacts!
|
|
|
|
self.update(artifacts_expire_at: nil)
|
|
|
|
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
|
|
|
|
return [] if user.blank?
|
|
|
|
|
|
|
|
[
|
|
|
|
{ key: 'GITLAB_USER_ID', value: user.id.to_s, public: true },
|
|
|
|
{ key: 'GITLAB_USER_EMAIL', value: user.email, public: true }
|
|
|
|
]
|
|
|
|
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 artifacts
|
|
|
|
[options[:artifacts]]
|
|
|
|
end
|
|
|
|
|
|
|
|
def cache
|
|
|
|
[options[:cache]]
|
|
|
|
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
|
|
|
|
|
|
|
|
def hide_secrets(trace)
|
|
|
|
return unless trace
|
|
|
|
|
|
|
|
trace = trace.dup
|
|
|
|
Ci::MaskSecret.mask!(trace, project.runners_token) if project
|
|
|
|
Ci::MaskSecret.mask!(trace, token)
|
|
|
|
trace
|
|
|
|
end
|
|
|
|
|
2016-08-24 12:49:21 +05:30
|
|
|
private
|
2016-06-02 11:05:42 +05:30
|
|
|
|
2016-08-24 12:49:21 +05:30
|
|
|
def update_artifacts_size
|
|
|
|
self.artifacts_size = if artifacts_file.exists?
|
|
|
|
artifacts_file.size
|
|
|
|
else
|
|
|
|
nil
|
|
|
|
end
|
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
|
|
|
|
|
2015-10-24 18:46:33 +05:30
|
|
|
def predefined_variables
|
2016-08-24 12:49:21 +05:30
|
|
|
variables = [
|
|
|
|
{ key: 'CI', value: 'true', public: true },
|
|
|
|
{ key: 'GITLAB_CI', value: 'true', public: true },
|
2017-08-17 22:00:37 +05:30
|
|
|
{ key: 'CI_SERVER_NAME', value: 'GitLab', public: true },
|
|
|
|
{ key: 'CI_SERVER_VERSION', value: Gitlab::VERSION, public: true },
|
|
|
|
{ key: 'CI_SERVER_REVISION', value: Gitlab::REVISION, public: true },
|
|
|
|
{ key: 'CI_JOB_ID', value: id.to_s, public: true },
|
|
|
|
{ key: 'CI_JOB_NAME', value: name, public: true },
|
|
|
|
{ key: 'CI_JOB_STAGE', value: stage, public: true },
|
|
|
|
{ key: 'CI_JOB_TOKEN', value: token, public: false },
|
|
|
|
{ key: 'CI_COMMIT_SHA', value: sha, public: true },
|
|
|
|
{ key: 'CI_COMMIT_REF_NAME', value: ref, public: true },
|
|
|
|
{ key: 'CI_COMMIT_REF_SLUG', value: ref_slug, public: true },
|
|
|
|
{ key: 'CI_REGISTRY_USER', value: CI_REGISTRY_USER, public: true },
|
|
|
|
{ key: 'CI_REGISTRY_PASSWORD', value: token, public: false },
|
|
|
|
{ key: 'CI_REPOSITORY_URL', value: repo_url, public: false }
|
|
|
|
]
|
|
|
|
|
|
|
|
variables << { key: "CI_COMMIT_TAG", value: ref, public: true } if tag?
|
|
|
|
variables << { key: "CI_PIPELINE_TRIGGERED", value: 'true', public: true } if trigger_request
|
|
|
|
variables << { key: "CI_JOB_MANUAL", value: 'true', public: true } if action?
|
|
|
|
variables.concat(legacy_variables)
|
|
|
|
end
|
|
|
|
|
|
|
|
def legacy_variables
|
|
|
|
variables = [
|
2016-08-24 12:49:21 +05:30
|
|
|
{ key: 'CI_BUILD_ID', value: id.to_s, public: true },
|
|
|
|
{ key: 'CI_BUILD_TOKEN', value: token, public: false },
|
|
|
|
{ key: 'CI_BUILD_REF', value: sha, public: true },
|
|
|
|
{ key: 'CI_BUILD_BEFORE_SHA', value: before_sha, public: true },
|
|
|
|
{ key: 'CI_BUILD_REF_NAME', value: ref, public: true },
|
2017-08-17 22:00:37 +05:30
|
|
|
{ key: 'CI_BUILD_REF_SLUG', value: ref_slug, public: true },
|
2016-08-24 12:49:21 +05:30
|
|
|
{ key: 'CI_BUILD_NAME', value: name, public: true },
|
2017-08-17 22:00:37 +05:30
|
|
|
{ key: 'CI_BUILD_STAGE', value: stage, public: true }
|
2016-08-24 12:49:21 +05:30
|
|
|
]
|
2017-08-17 22:00:37 +05:30
|
|
|
|
|
|
|
variables << { key: "CI_BUILD_TAG", value: ref, public: true } if tag?
|
|
|
|
variables << { key: "CI_BUILD_TRIGGERED", value: 'true', public: true } if trigger_request
|
|
|
|
variables << { key: "CI_BUILD_MANUAL", value: 'true', public: true } if action?
|
2015-10-24 18:46:33 +05:30
|
|
|
variables
|
|
|
|
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
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
def update_project_statistics
|
|
|
|
return unless project
|
2016-09-29 09:46:39 +05:30
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
ProjectCacheWorker.perform_async(project_id, [], [:build_artifacts_size])
|
2016-09-29 09:46:39 +05:30
|
|
|
end
|
2015-09-25 12:07:36 +05:30
|
|
|
end
|
|
|
|
end
|