debian-mirror-gitlab/lib/gitlab/ci/pipeline/chain/helpers.rb

31 lines
866 B
Ruby
Raw Normal View History

2018-12-13 13:39:08 +05:30
# frozen_string_literal: true
2018-03-17 18:26:18 +05:30
module Gitlab
module Ci
module Pipeline
module Chain
module Helpers
2020-01-01 13:55:28 +05:30
def error(message, config_error: false, drop_reason: nil)
2019-12-04 20:38:33 +05:30
if config_error && command.save_incompleted
2020-01-01 13:55:28 +05:30
drop_reason = :config_error
2019-12-04 20:38:33 +05:30
pipeline.yaml_errors = message
end
2020-07-28 23:09:34 +05:30
pipeline.add_error_message(message)
2020-01-01 13:55:28 +05:30
pipeline.drop!(drop_reason) if drop_reason
2020-07-28 23:09:34 +05:30
# 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
2018-03-17 18:26:18 +05:30
pipeline.errors.add(:base, message)
end
2020-07-28 23:09:34 +05:30
def warning(message)
pipeline.add_warning_message(message)
end
2018-03-17 18:26:18 +05:30
end
end
end
end
end