Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
b245f67c
Commit
b245f67c
authored
Oct 09, 2017
by
Alessio Caiazza
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Resolve CI/CD build related merge conflicts
parent
dd649aa9
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
6 deletions
+0
-6
app/workers/build_finished_worker.rb
app/workers/build_finished_worker.rb
+0
-3
spec/models/ci/build_spec.rb
spec/models/ci/build_spec.rb
+0
-3
No files found.
app/workers/build_finished_worker.rb
View file @
b245f67c
...
...
@@ -6,11 +6,8 @@ class BuildFinishedWorker
def
perform
(
build_id
)
Ci
::
Build
.
find_by
(
id:
build_id
).
try
do
|
build
|
<<<<<<<
HEAD
UpdateBuildMinutesService
.
new
(
build
.
project
,
nil
).
execute
(
build
)
=======
BuildTraceSectionsWorker
.
perform_async
(
build
.
id
)
>>>>>>>
ce
-
com
/
master
BuildCoverageWorker
.
new
.
perform
(
build
.
id
)
BuildHooksWorker
.
new
.
perform
(
build
.
id
)
end
...
...
spec/models/ci/build_spec.rb
View file @
b245f67c
...
...
@@ -18,11 +18,8 @@ describe Ci::Build do
it
{
is_expected
.
to
belong_to
(
:trigger_request
)
}
it
{
is_expected
.
to
belong_to
(
:erased_by
)
}
it
{
is_expected
.
to
have_many
(
:deployments
)
}
<<<<<<<
HEAD
it
{
is_expected
.
to
have_many
(
:sourced_pipelines
)
}
=======
it
{
is_expected
.
to
have_many
(
:trace_sections
)}
>>>>>>>
ce
-
com
/
master
it
{
is_expected
.
to
validate_presence_of
(
:ref
)
}
it
{
is_expected
.
to
respond_to
(
:has_trace?
)
}
it
{
is_expected
.
to
respond_to
(
:trace
)
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment