Module: Gitlab::Ci::Pipeline::Chain::Helpers

Instance Method Summary collapse

Instance Method Details

#error(message, config_error: false, drop_reason: nil) ⇒ Object



8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# File 'lib/gitlab/ci/pipeline/chain/helpers.rb', line 8

def error(message, config_error: false, drop_reason: nil)
  sanitized_message = ActionController::Base.helpers.sanitize(message, tags: [])

  if config_error
    drop_reason = :config_error
    pipeline.yaml_errors = sanitized_message
  end

  pipeline.add_error_message(sanitized_message)

  drop_pipeline!(drop_reason)

  # TODO: consider not to rely on AR errors directly as they can be
  # polluted with other unrelated errors (e.g. state machine)
  # https://gitlab.com/gitlab-org/gitlab/-/issues/220823
  pipeline.errors.add(:base, sanitized_message)

  pipeline.errors.full_messages
end

#warning(message) ⇒ Object



28
29
30
31
# File 'lib/gitlab/ci/pipeline/chain/helpers.rb', line 28

def warning(message)
  sanitized_message = ActionController::Base.helpers.sanitize(message, tags: [])
  pipeline.add_warning_message(sanitized_message)
end