2018-11-13 11:29:14 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Ci
|
|
|
|
module PipelineEnums
|
|
|
|
# Returns the `Hash` to use for creating the `failure_reason` enum for
|
|
|
|
# `Ci::Pipeline`.
|
|
|
|
def self.failure_reasons
|
|
|
|
{
|
|
|
|
unknown_failure: 0,
|
2019-12-14 04:07:51 -05:00
|
|
|
config_error: 1,
|
|
|
|
external_validation_failure: 2
|
2018-11-13 11:29:14 -05:00
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
# Returns the `Hash` to use for creating the `sources` enum for
|
|
|
|
# `Ci::Pipeline`.
|
|
|
|
def self.sources
|
|
|
|
{
|
|
|
|
unknown: nil,
|
|
|
|
push: 1,
|
|
|
|
web: 2,
|
|
|
|
trigger: 3,
|
|
|
|
schedule: 4,
|
|
|
|
api: 5,
|
2018-12-05 01:57:00 -05:00
|
|
|
external: 6,
|
2020-01-13 07:08:04 -05:00
|
|
|
# TODO: Rename `pipeline` to `cross_project_pipeline` in 13.0
|
|
|
|
# https://gitlab.com/gitlab-org/gitlab/issues/195991
|
2020-01-08 07:07:59 -05:00
|
|
|
pipeline: 7,
|
2019-02-20 16:29:48 -05:00
|
|
|
chat: 8,
|
2020-05-25 11:07:58 -04:00
|
|
|
webide: 9,
|
2019-08-09 05:40:45 -04:00
|
|
|
merge_request_event: 10,
|
2020-01-13 07:08:04 -05:00
|
|
|
external_pull_request_event: 11,
|
|
|
|
parent_pipeline: 12
|
2018-11-13 11:29:14 -05:00
|
|
|
}
|
|
|
|
end
|
2018-12-13 09:12:36 -05:00
|
|
|
|
|
|
|
# Returns the `Hash` to use for creating the `config_sources` enum for
|
|
|
|
# `Ci::Pipeline`.
|
|
|
|
def self.config_sources
|
|
|
|
{
|
|
|
|
unknown_source: nil,
|
|
|
|
repository_source: 1,
|
2019-12-05 13:07:51 -05:00
|
|
|
auto_devops_source: 2,
|
2020-05-25 11:07:58 -04:00
|
|
|
webide_source: 3,
|
2019-12-05 13:07:51 -05:00
|
|
|
remote_source: 4,
|
2020-01-13 07:08:04 -05:00
|
|
|
external_project_source: 5,
|
|
|
|
bridge_source: 6
|
2018-12-13 09:12:36 -05:00
|
|
|
}
|
|
|
|
end
|
2019-12-05 13:07:51 -05:00
|
|
|
|
2020-02-13 13:09:00 -05:00
|
|
|
def self.ci_config_sources
|
|
|
|
config_sources.slice(
|
2019-12-05 13:07:51 -05:00
|
|
|
:unknown_source,
|
|
|
|
:repository_source,
|
|
|
|
:auto_devops_source,
|
|
|
|
:remote_source,
|
2020-02-13 13:09:00 -05:00
|
|
|
:external_project_source
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.ci_config_sources_values
|
|
|
|
ci_config_sources.values
|
2019-12-05 13:07:51 -05:00
|
|
|
end
|
2018-11-13 11:29:14 -05:00
|
|
|
end
|
|
|
|
end
|
2019-09-13 09:26:31 -04:00
|
|
|
|
|
|
|
Ci::PipelineEnums.prepend_if_ee('EE::Ci::PipelineEnums')
|