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
2de4647f
Commit
2de4647f
authored
Aug 31, 2020
by
Marius Bobin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Implement reviewer feedback
parent
4b37c7bf
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
11 deletions
+8
-11
app/models/commit_status.rb
app/models/commit_status.rb
+5
-9
spec/models/commit_status_spec.rb
spec/models/commit_status_spec.rb
+3
-2
No files found.
app/models/commit_status.rb
View file @
2de4647f
...
...
@@ -199,18 +199,14 @@ class CommitStatus < ApplicationRecord
end
# Extracts common job name for matrix and parallel builds:
# 'rspec:linux: [aws, max memory]' => 'rspec:linux'
# 'rspec:linux: 1/10' => 'rspec:linux'
# 'rspec:linux: [aws, max memory]' => 'rspec:linux'
#
def
group_name
if
Gitlab
::
Ci
::
Features
.
new_matrix_job_names_enabled?
matches
=
name
.
to_s
.
match
(
/\A(.*?): \[+(.*, )+(.*)\]\z/
)
group_name
=
matches
.
to_a
[
1
]
||
name
else
group_name
=
name
end
group_name
.
to_s
.
gsub
(
%r{
\d
+[
\s
:/
\\
]+
\d
+
\s
*}
,
''
).
strip
group_name
=
name
.
to_s
.
gsub
(
%r{
\d
+[
\s
:
\/\\
]+
\d
+
\s
*}
,
''
)
group_name
.
gsub!
(
%r{:
\[
.+, .+
\]\s
*
\z
}
,
''
)
if
Gitlab
::
Ci
::
Features
.
new_matrix_job_names_enabled?
group_name
.
strip!
group_name
end
def
failed_but_allowed?
...
...
spec/models/commit_status_spec.rb
View file @
2de4647f
...
...
@@ -514,9 +514,10 @@ RSpec.describe CommitStatus do
'rspec: [aws]'
=>
'rspec: [aws]'
,
'rspec: [aws] 0/1'
=>
'rspec: [aws]'
,
'rspec: [aws, max memory]'
=>
'rspec'
,
'rspec:linux: [aws, max memory]'
=>
'rspec:linux'
,
'rspec:linux: [aws, max memory
, data
]'
=>
'rspec:linux'
,
'rspec: [inception: [something, other thing], value]'
=>
'rspec'
,
'rspec:windows 0/1: [name, other]'
=>
'rspec:windows'
'rspec:windows 0/1: [name, other]'
=>
'rspec:windows'
,
'rspec:windows: [name, other] 0/1'
=>
'rspec:windows'
}
tests
.
each
do
|
name
,
group_name
|
...
...
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