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

21 lines
433 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
2019-12-04 20:38:33 +05:30
def error(message, config_error: false)
if config_error && command.save_incompleted
pipeline.yaml_errors = message
pipeline.drop!(:config_error)
end
2018-03-17 18:26:18 +05:30
pipeline.errors.add(:base, message)
end
end
end
end
end
end