ci/eval: restore `501+` label

zowoq b94f2706 002e317b

Changed files
+16 -4
ci
eval
compare
+16 -4
ci/eval/compare/utils.nix
···
else if rebuildCount <= 500 then
[ "101-500" ]
else if rebuildCount <= 1000 then
-
[ "501-1000" ]
else if rebuildCount <= 2500 then
-
[ "1001-2500" ]
else if rebuildCount <= 5000 then
-
[ "2501-5000" ]
else
-
[ "5001+" ];
in
lib.forEach numbers (number: "10.rebuild-${kernel}: ${number}")
) rebuildCountByKernel
···
else if rebuildCount <= 500 then
[ "101-500" ]
else if rebuildCount <= 1000 then
+
[
+
"501-1000"
+
"501+"
+
]
else if rebuildCount <= 2500 then
+
[
+
"1001-2500"
+
"501+"
+
]
else if rebuildCount <= 5000 then
+
[
+
"2501-5000"
+
"501+"
+
]
else
+
[
+
"5001+"
+
"501+"
+
];
in
lib.forEach numbers (number: "10.rebuild-${kernel}: ${number}")
) rebuildCountByKernel