Set a pipeline failure reason when it has YAML errors
Conflicts: app/models/ci/pipeline.rb
This commit is contained in:
parent
41d8030ec2
commit
9f639b0733
3 changed files with 7 additions and 2 deletions
|
@ -59,7 +59,8 @@ module Ci
|
||||||
}
|
}
|
||||||
|
|
||||||
enum failure_reason: {
|
enum failure_reason: {
|
||||||
unknown_failure: 0
|
unknown_failure: 0,
|
||||||
|
config_error: 1
|
||||||
}
|
}
|
||||||
|
|
||||||
state_machine :status, initial: :created do
|
state_machine :status, initial: :created do
|
||||||
|
|
|
@ -13,7 +13,7 @@ module Gitlab
|
||||||
end
|
end
|
||||||
|
|
||||||
if @command.save_incompleted && @pipeline.has_yaml_errors?
|
if @command.save_incompleted && @pipeline.has_yaml_errors?
|
||||||
@pipeline.drop
|
@pipeline.drop!(:config_error)
|
||||||
end
|
end
|
||||||
|
|
||||||
return error(@pipeline.yaml_errors)
|
return error(@pipeline.yaml_errors)
|
||||||
|
|
|
@ -55,6 +55,10 @@ describe Gitlab::Ci::Pipeline::Chain::Validate::Config do
|
||||||
it 'fails the pipeline' do
|
it 'fails the pipeline' do
|
||||||
expect(pipeline.reload).to be_failed
|
expect(pipeline.reload).to be_failed
|
||||||
end
|
end
|
||||||
|
|
||||||
|
it 'sets a config error failure reason' do
|
||||||
|
expect(pipeline.reload.config_error?).to eq true
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
context 'when saving incomplete pipeline is not allowed' do
|
context 'when saving incomplete pipeline is not allowed' do
|
||||||
|
|
Loading…
Reference in a new issue