ci/eval: restore 501+ label

This commit is contained in:
zowoq
2025-01-22 09:10:52 +10:00
parent 002e317bf9
commit b94f270650

View File

@@ -212,13 +212,25 @@ rec {
else if rebuildCount <= 500 then else if rebuildCount <= 500 then
[ "101-500" ] [ "101-500" ]
else if rebuildCount <= 1000 then else if rebuildCount <= 1000 then
[ "501-1000" ] [
"501-1000"
"501+"
]
else if rebuildCount <= 2500 then else if rebuildCount <= 2500 then
[ "1001-2500" ] [
"1001-2500"
"501+"
]
else if rebuildCount <= 5000 then else if rebuildCount <= 5000 then
[ "2501-5000" ] [
"2501-5000"
"501+"
]
else else
[ "5001+" ]; [
"5001+"
"501+"
];
in in
lib.forEach numbers (number: "10.rebuild-${kernel}: ${number}") lib.forEach numbers (number: "10.rebuild-${kernel}: ${number}")
) rebuildCountByKernel ) rebuildCountByKernel