refactor(gs/system): Prefer dobharchu over cerberus

This machine is significantly faster. Also, drop nixbuild, since the
transfer speed is too slow to make it worth it.

Change-Id: Ic14ef96e03a81dc429e4b4fec961c891dbb4b2b9
Reviewed-on: https://cl.tvl.fyi/c/depot/+/2066
Reviewed-by: glittershark <grfn@gws.fyi>
Tested-by: BuildkiteCI
This commit is contained in:
Griffin Smith 2020-10-27 17:26:09 -04:00 committed by glittershark
parent 98ed3c56db
commit ed9909527c

View file

@ -118,23 +118,21 @@
maxJobs = lib.mkDefault 12;
binaryCaches = [ "ssh://grfn@172.16.0.5" ];
trustedBinaryCaches = [ "ssh://grfn@172.16.0.5" ];
buildMachines = [{
hostName = "172.16.0.3";
sshUser = "griffin";
sshKey = "/home/grfn/.ssh/id_rsa";
system = "x86_64-darwin";
maxJobs = 4;
} {
hostName = "172.16.0.4";
sshUser = "griffin";
sshKey = "/home/grfn/.ssh/id_rsa";
system = "x86_64-darwin";
maxJobs = 8; # 16 cpus
} {
hostName = "eu.nixbuild.net";
system = "x86_64-linux";
maxJobs = 100;
supportedFeatures = [ "benchmark" "big-parallel" ];
}];
buildMachines = [
{
hostName = "172.16.0.4";
sshUser = "griffin";
sshKey = "/home/grfn/.ssh/id_rsa";
system = "x86_64-darwin";
maxJobs = 8; # 16 cpus
}
{
hostName = "172.16.0.3";
sshUser = "griffin";
sshKey = "/home/grfn/.ssh/id_rsa";
system = "x86_64-darwin";
maxJobs = 4;
}
];
};
}