Merge branch 'mc/feature/required-template-inclusion-single-commit-ce' into 'master'

Enforce template inclusion in pipelines - CE

See merge request gitlab-org/gitlab-ce!29296
This commit is contained in:
Grzegorz Bizon 2019-06-18 08:04:32 +00:00
commit 077bb1b299
3 changed files with 28 additions and 3 deletions

View File

@ -0,0 +1,15 @@
# frozen_string_literal: true
# See http://doc.gitlab.com/ce/development/migration_style_guide.html
# for more information on how to write migrations for GitLab.
class AddRequiredTemplateNameToApplicationSettings < ActiveRecord::Migration[5.1]
include Gitlab::Database::MigrationHelpers
# Set this constant to true if this migration requires downtime.
DOWNTIME = false
def change
add_column :application_settings, :required_instance_ci_template, :string, null: true
end
end

View File

@ -194,6 +194,7 @@ ActiveRecord::Schema.define(version: 20190613030606) do
t.integer "elasticsearch_replicas", default: 1, null: false
t.text "encrypted_lets_encrypt_private_key"
t.text "encrypted_lets_encrypt_private_key_iv"
t.string "required_instance_ci_template"
t.boolean "dns_rebinding_protection_enabled", default: true, null: false
t.boolean "default_project_deletion_protection", default: false, null: false
t.boolean "lock_memberships_to_ldap", default: false, null: false

View File

@ -8,6 +8,12 @@ module Gitlab
class Config
ConfigError = Class.new(StandardError)
RESCUE_ERRORS = [
Gitlab::Config::Loader::FormatError,
Extendable::ExtensionError,
External::Processor::IncludeError
].freeze
def initialize(config, project: nil, sha: nil, user: nil)
@config = Config::Extendable
.new(build_config(config, project: project, sha: sha, user: user))
@ -15,9 +21,7 @@ module Gitlab
@global = Entry::Global.new(@config)
@global.compose!
rescue Gitlab::Config::Loader::FormatError,
Extendable::ExtensionError,
External::Processor::IncludeError => e
rescue *rescue_errors => e
raise Config::ConfigError, e.message
end
@ -83,6 +87,11 @@ module Gitlab
user: user,
expandset: Set.new).perform
end
# Overriden in EE
def rescue_errors
RESCUE_ERRORS
end
end
end
end