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

22 lines
504 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-01-01 13:55:28 +05:30
pipeline.drop!(drop_reason) if drop_reason
2018-03-17 18:26:18 +05:30
pipeline.errors.add(:base, message)
end
end
end
end
end
end