Revert "Allow CI/CD Jobs being grouped on version strings"

This reverts commit 4f2cdb51df.
This commit is contained in:
Zeger-Jan van de Weg 2018-04-04 14:10:22 +02:00
parent eaed588bf2
commit 16ea3315f2
No known key found for this signature in database
GPG Key ID: 65F6A8D64A88ABAC
2 changed files with 2 additions and 4 deletions

View File

@ -141,7 +141,7 @@ class CommitStatus < ActiveRecord::Base
end
def group_name
name.to_s.gsub(%r{\d+[\.\s:/\\]+\d+\s*}, '').strip
name.to_s.gsub(%r{\d+[\s:/\\]+\d+\s*}, '').strip
end
def failed_but_allowed?

View File

@ -368,9 +368,7 @@ describe CommitStatus do
'rspec:windows 0 : / 1' => 'rspec:windows',
'rspec:windows 0 : / 1 name' => 'rspec:windows name',
'0 1 name ruby' => 'name ruby',
'0 :/ 1 name ruby' => 'name ruby',
'golang test 1.8' => 'golang test',
'1.9 golang test' => 'golang test'
'0 :/ 1 name ruby' => 'name ruby'
}
tests.each do |name, group_name|