ci/eval: restore `501+` label

zowoq b94f2706 002e317b

+16 -4
+16 -4
ci/eval/compare/utils.nix
··· 212 else if rebuildCount <= 500 then 213 [ "101-500" ] 214 else if rebuildCount <= 1000 then 215 - [ "501-1000" ] 216 else if rebuildCount <= 2500 then 217 - [ "1001-2500" ] 218 else if rebuildCount <= 5000 then 219 - [ "2501-5000" ] 220 else 221 - [ "5001+" ]; 222 in 223 lib.forEach numbers (number: "10.rebuild-${kernel}: ${number}") 224 ) rebuildCountByKernel
··· 212 else if rebuildCount <= 500 then 213 [ "101-500" ] 214 else if rebuildCount <= 1000 then 215 + [ 216 + "501-1000" 217 + "501+" 218 + ] 219 else if rebuildCount <= 2500 then 220 + [ 221 + "1001-2500" 222 + "501+" 223 + ] 224 else if rebuildCount <= 5000 then 225 + [ 226 + "2501-5000" 227 + "501+" 228 + ] 229 else 230 + [ 231 + "5001+" 232 + "501+" 233 + ]; 234 in 235 lib.forEach numbers (number: "10.rebuild-${kernel}: ${number}") 236 ) rebuildCountByKernel