Also group compiler stats

This commit is contained in:
Jakob Borg
2016-06-07 08:12:32 +02:00
parent 82621f250c
commit f5b7e8addd
3 changed files with 20 additions and 6 deletions

View File

@@ -138,3 +138,10 @@ func byPlatform(s string) string {
}
return s
}
func byCompiler(s string) string {
if strings.HasPrefix(s, "go1.") && len(s) >= 5 {
return s[:5]
}
return "Other"
}