hydra: add nix-build to buildMachines

This commit is contained in:
Astro 2021-11-10 00:30:57 +01:00
parent 69a90ba470
commit dee06b4790
1 changed files with 15 additions and 3 deletions

View File

@ -1,6 +1,8 @@
{ config, pkgs, ... }:
{
let
nix-build = "client@172.22.99.156";
in {
nix = {
binaryCaches =
[ "https://cache.nixos.org" "https://genodepkgs.cachix.org" ];
@ -11,12 +13,22 @@
allowed-uris = http:// https://
'';
trustedUsers = [ "hydra" ];
buildMachines = [{
buildMachines = [ {
hostName = "localhost";
system = "x86_64-linux";
supportedFeatures = [ "kvm" "nixos-test" "big-parallel" "benchmark" ];
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;
} ];
};
services.hydra = {