Skip to content

Commit

Permalink
Merge branch 'suppress-allow-failure-builds' into 'master'
Browse files Browse the repository at this point in the history
Suppress e-mails on failed builds if allow_failure is set

Every time I push to GitLab, I get > 2 emails saying a spec failed when I don't care about the benchmarks and others that have `allow_failure` set to `true`.

@ayufan mentioned creating a summary e-mail to prevent getting one e-mail per build, but the latter might actually be desirable. For example, I do want to know if Rubocop errors fail right away.

See merge request !2178
  • Loading branch information
stanhu committed Jan 8, 2016
2 parents 8429f6f + 6920961 commit 7403df6
Show file tree
Hide file tree
Showing 5 changed files with 31 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG
Expand Up @@ -32,6 +32,7 @@ v 8.4.0 (unreleased)

v 8.3.3 (unreleased)
- Get "Merge when build succeeds" to work when commits were pushed to MR target branch while builds were running
- Suppress e-mails on failed builds if allow_failure is set (Stan Hu)
- Fix project transfer e-mail sending incorrect paths in e-mail notification (Stan Hu)
- Enable "Add key" button when user fills in a proper key (Stan Hu)

Expand Down
6 changes: 5 additions & 1 deletion app/models/project_services/builds_email_service.rb
Expand Up @@ -73,12 +73,16 @@ def should_build_be_notified?(data)
when 'success'
!notify_only_broken_builds?
when 'failed'
true
!allow_failure?(data)
else
false
end
end

def allow_failure?(data)
data[:build_allow_failure] == true
end

def all_recipients(data)
all_recipients = recipients.split(',')

Expand Down
1 change: 1 addition & 0 deletions lib/gitlab/build_data_builder.rb
Expand Up @@ -23,6 +23,7 @@ def build(build)
build_started_at: build.started_at,
build_finished_at: build.finished_at,
build_duration: build.duration,
build_allow_failure: build.allow_failure,

# TODO: do we still need it?
project_id: project.id,
Expand Down
1 change: 1 addition & 0 deletions spec/lib/gitlab/build_data_builder_spec.rb
Expand Up @@ -14,6 +14,7 @@
it { expect(data[:tag]).to eq(build.tag) }
it { expect(data[:build_id]).to eq(build.id) }
it { expect(data[:build_status]).to eq(build.status) }
it { expect(data[:build_allow_failure]).to eq(false) }
it { expect(data[:project_id]).to eq(build.project.id) }
it { expect(data[:project_name]).to eq(build.project.name_with_namespace) }
end
Expand Down
23 changes: 23 additions & 0 deletions spec/models/project_services/builds_email_service_spec.rb
@@ -0,0 +1,23 @@
require 'spec_helper'

describe BuildsEmailService do
let(:build) { create(:ci_build) }
let(:data) { Gitlab::BuildDataBuilder.build(build) }
let(:service) { BuildsEmailService.new }

describe :execute do
it "sends email" do
service.recipients = 'test@gitlab.com'
data[:build_status] = 'failed'
expect(BuildEmailWorker).to receive(:perform_async)
service.execute(data)
end

it "does not sends email with failed build and allowed_failure on" do
data[:build_status] = 'failed'
data[:build_allow_failure] = true
expect(BuildEmailWorker).not_to receive(:perform_async)
service.execute(data)
end
end
end

0 comments on commit 7403df6

Please sign in to comment.