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
518fd2eb
Commit
518fd2eb
authored
Dec 09, 2016
by
Leandro Camargo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Improve/polish code logic for some Ci::Build methods
parent
be7106a1
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
app/models/ci/build.rb
app/models/ci/build.rb
+4
-4
No files found.
app/models/ci/build.rb
View file @
518fd2eb
...
@@ -275,11 +275,11 @@ module Ci
...
@@ -275,11 +275,11 @@ module Ci
end
end
def
update_coverage
def
update_coverage
regex
=
coverage_regex
.
to_s
[
1
...-
1
]
regex
=
coverage_regex
return
if
regex
.
blank?
return
unless
regex
coverage
=
extract_coverage
(
trace
,
regex
)
coverage
=
extract_coverage
(
trace
,
regex
[
1
...-
1
]
)
if
coverage
.
is_a?
Numeric
if
coverage
.
is_a?
Numeric
update_attributes
(
coverage:
coverage
)
update_attributes
(
coverage:
coverage
)
...
@@ -526,7 +526,7 @@ module Ci
...
@@ -526,7 +526,7 @@ module Ci
def
coverage_regex
def
coverage_regex
super
||
super
||
project
.
try
(
:build_coverage_regex
).
presence
&&
project
.
try
(
:build_coverage_regex
).
presence
&&
"/
#{
project
.
try
(
:build_coverage_regex
)
}
/"
"/
#{
project
.
build_coverage_regex
}
/"
end
end
def
when
def
when
...
...
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