adjust builders list

This commit is contained in:
Yureka 2024-12-09 10:46:03 +01:00
parent 2e7a702c28
commit 070d97fdf1
2 changed files with 2 additions and 3 deletions

View file

@ -173,7 +173,7 @@
}
];
builders = lib.listToAttrs (lib.genList makeBuilder 11);
builders = lib.listToAttrs (map makeBuilder [4 5 10 11]);
in {
meta.nixpkgs = systemBits.x86_64-linux.pkgs;
# Add any non-x86_64 native systems here.

View file

@ -9,8 +9,7 @@
bagel.services = {
hydra.enable = true;
# Takes 10 builders (0 → 9).
hydra.builders = lib.genList (i: "builder-${builtins.toString i}") 10;
hydra.builders = map (i: "builder-${builtins.toString i}") [4 5 10];
};
bagel.monitoring.exporters.hydra.enable = true;