mirror of
https://gitlab.com/gitlab-org/gitlab-foss.git
synced 2025-08-13 13:31:19 +00:00
113 lines
5.0 KiB
Ruby
113 lines
5.0 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
module Gitlab
|
|
module Ci
|
|
module Variables
|
|
class Builder
|
|
class Pipeline
|
|
include Gitlab::Utils::StrongMemoize
|
|
|
|
def initialize(pipeline)
|
|
@pipeline = pipeline
|
|
end
|
|
|
|
def predefined_variables
|
|
Gitlab::Ci::Variables::Collection.new.tap do |variables|
|
|
variables.concat(predefined_pipeline_variables)
|
|
|
|
variables.concat(predefined_commit_variables) if pipeline.sha.present?
|
|
variables.concat(predefined_commit_tag_variables) if pipeline.tag?
|
|
variables.concat(predefined_merge_request_variables) if pipeline.merge_request?
|
|
|
|
if pipeline.open_merge_requests_refs.any?
|
|
variables.append(key: 'CI_OPEN_MERGE_REQUESTS', value: pipeline.open_merge_requests_refs.join(','))
|
|
end
|
|
|
|
variables.append(key: 'CI_GITLAB_FIPS_MODE', value: 'true') if Gitlab::FIPS.enabled?
|
|
|
|
variables.append(key: 'CI_KUBERNETES_ACTIVE', value: 'true') if pipeline.has_kubernetes_active?
|
|
variables.append(key: 'CI_DEPLOY_FREEZE', value: 'true') if pipeline.freeze_period?
|
|
|
|
if pipeline.external_pull_request_event? && pipeline.external_pull_request
|
|
variables.concat(pipeline.external_pull_request.predefined_variables)
|
|
end
|
|
end
|
|
end
|
|
|
|
private
|
|
|
|
attr_reader :pipeline
|
|
|
|
def predefined_pipeline_variables
|
|
Gitlab::Ci::Variables::Collection.new.tap do |variables|
|
|
variables.append(key: 'CI_PIPELINE_IID', value: pipeline.iid.to_s)
|
|
variables.append(key: 'CI_PIPELINE_SOURCE', value: pipeline.source.to_s)
|
|
variables.append(key: 'CI_PIPELINE_CREATED_AT', value: pipeline.created_at&.iso8601)
|
|
variables.append(key: 'CI_PIPELINE_NAME', value: pipeline.name)
|
|
|
|
if pipeline.pipeline_schedule
|
|
variables.append(key: 'CI_PIPELINE_SCHEDULE_DESCRIPTION', value: pipeline.pipeline_schedule.description)
|
|
end
|
|
end
|
|
end
|
|
|
|
def predefined_commit_variables
|
|
Gitlab::Ci::Variables::Collection.new.tap do |variables|
|
|
next variables unless pipeline.sha.present?
|
|
|
|
variables.append(key: 'CI_COMMIT_SHA', value: pipeline.sha)
|
|
variables.append(key: 'CI_COMMIT_SHORT_SHA', value: pipeline.short_sha)
|
|
variables.append(key: 'CI_COMMIT_BEFORE_SHA', value: pipeline.before_sha)
|
|
variables.append(key: 'CI_COMMIT_REF_NAME', value: pipeline.source_ref)
|
|
variables.append(key: 'CI_COMMIT_REF_SLUG', value: pipeline.source_ref_slug)
|
|
variables.append(key: 'CI_COMMIT_BRANCH', value: pipeline.ref) if pipeline.branch?
|
|
variables.append(key: 'CI_COMMIT_MESSAGE', value: pipeline.git_commit_message.to_s)
|
|
variables.append(key: 'CI_COMMIT_TITLE', value: pipeline.git_commit_full_title.to_s)
|
|
variables.append(key: 'CI_COMMIT_DESCRIPTION', value: pipeline.git_commit_description.to_s)
|
|
variables.append(key: 'CI_COMMIT_REF_PROTECTED', value: (!!pipeline.protected_ref?).to_s)
|
|
variables.append(key: 'CI_COMMIT_TIMESTAMP', value: pipeline.git_commit_timestamp.to_s)
|
|
variables.append(key: 'CI_COMMIT_AUTHOR', value: pipeline.git_author_full_text.to_s)
|
|
end
|
|
end
|
|
strong_memoize_attr :predefined_commit_variables
|
|
|
|
def predefined_commit_tag_variables
|
|
Gitlab::Ci::Variables::Collection.new.tap do |variables|
|
|
git_tag = pipeline.project.repository.find_tag(pipeline.ref)
|
|
|
|
next variables unless git_tag
|
|
|
|
variables.append(key: 'CI_COMMIT_TAG', value: pipeline.ref)
|
|
variables.append(key: 'CI_COMMIT_TAG_MESSAGE', value: git_tag.message)
|
|
end
|
|
end
|
|
strong_memoize_attr :predefined_commit_tag_variables
|
|
|
|
def predefined_merge_request_variables
|
|
Preloader::MergeRequest.new(pipeline.merge_request).preload
|
|
|
|
Gitlab::Ci::Variables::Collection.new.tap do |variables|
|
|
variables.append(key: 'CI_MERGE_REQUEST_EVENT_TYPE', value: pipeline.merge_request_event_type.to_s)
|
|
variables.append(key: 'CI_MERGE_REQUEST_SOURCE_BRANCH_SHA', value: pipeline.source_sha.to_s)
|
|
variables.append(key: 'CI_MERGE_REQUEST_TARGET_BRANCH_SHA', value: pipeline.target_sha.to_s)
|
|
|
|
if merge_request_diff.present?
|
|
variables.append(key: 'CI_MERGE_REQUEST_DIFF_ID', value: merge_request_diff.id.to_s)
|
|
variables.append(key: 'CI_MERGE_REQUEST_DIFF_BASE_SHA', value: merge_request_diff.base_commit_sha)
|
|
end
|
|
|
|
variables.concat(pipeline.merge_request.predefined_variables)
|
|
end
|
|
end
|
|
strong_memoize_attr :predefined_merge_request_variables
|
|
|
|
def merge_request_diff
|
|
pipeline.merge_request_diff
|
|
end
|
|
strong_memoize_attr :merge_request_diff
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|