Skip to content

Commit

Permalink
ci/eval: restore 501+ label (NixOS#375670)
Browse files Browse the repository at this point in the history
  • Loading branch information
infinisil authored Jan 24, 2025
2 parents ecdd07f + b94f270 commit e4da98a
Showing 1 changed file with 16 additions and 4 deletions.
20 changes: 16 additions & 4 deletions ci/eval/compare/utils.nix
Original file line number Diff line number Diff line change
Expand Up @@ -212,13 +212,25 @@ rec {
else if rebuildCount <= 500 then
[ "101-500" ]
else if rebuildCount <= 1000 then
[ "501-1000" ]
[
"501-1000"
"501+"
]
else if rebuildCount <= 2500 then
[ "1001-2500" ]
[
"1001-2500"
"501+"
]
else if rebuildCount <= 5000 then
[ "2501-5000" ]
[
"2501-5000"
"501+"
]
else
[ "5001+" ];
[
"5001+"
"501+"
];
in
lib.forEach numbers (number: "10.rebuild-${kernel}: ${number}")
) rebuildCountByKernel
Expand Down

0 comments on commit e4da98a

Please sign in to comment.