hydra: add back nix-build as builder

This commit is contained in:
Astro 2022-06-09 01:24:58 +02:00
parent dec089eb72
commit b35eb054cd
1 changed files with 9 additions and 0 deletions

View File

@ -16,6 +16,15 @@ in {
);
supportedFeatures = [ "big-parallel" "benchmark" "kvm" "nixos-test" ];
inherit (config.nix) maxJobs;
} {
hostName = "client@nix-build.serv.zentralwerk.org";
system = lib.concatStringsSep "," [
"x86_64-linux" "i686-linux"
"armv6l-linux" "armv7l-linux"
"aarch64-linux" "riscv64-linux"
];
supportedFeatures = [ "big-parallel" ];
maxJobs = 4;
} ];
daemonCPUSchedPolicy = "idle";