hydra: add nix-build to buildMachines

This commit is contained in:
Astro 2021-11-10 00:30:57 +01:00
parent 69a90ba470
commit dee06b4790

View File

@ -1,6 +1,8 @@
{ config, pkgs, ... }: { config, pkgs, ... }:
{ let
nix-build = "client@172.22.99.156";
in {
nix = { nix = {
binaryCaches = binaryCaches =
[ "https://cache.nixos.org" "https://genodepkgs.cachix.org" ]; [ "https://cache.nixos.org" "https://genodepkgs.cachix.org" ];
@ -16,6 +18,16 @@
system = "x86_64-linux"; system = "x86_64-linux";
supportedFeatures = [ "kvm" "nixos-test" "big-parallel" "benchmark" ]; supportedFeatures = [ "kvm" "nixos-test" "big-parallel" "benchmark" ];
maxJobs = 4; maxJobs = 4;
} {
hostName = nix-build;
system = "x86_64-linux";
supportedFeatures = [ "nixos-test" "big-parallel" "benchmark" ];
maxJobs = 4;
} {
hostName = nix-build;
system = "aarch64-linux";
supportedFeatures = [ "nixos-test" "big-parallel" "benchmark" ];
maxJobs = 4;
} ]; } ];
}; };