Remote builders

This commit is contained in:
Andrea Ciceri 2024-01-26 14:35:16 +01:00
parent 8ad5a456cd
commit 3b03b4bb94
Signed by: aciceri
SSH key fingerprint: SHA256:/AagBweyV4Hlfg9u092n8hbHwD5fcB6A3qhDiDA65Rg

View file

@ -58,5 +58,27 @@
path = "/home/${config.ccr.username}/.config/emacs"; path = "/home/${config.ccr.username}/.config/emacs";
}; };
}; };
distributedBuilds = true;
buildMachines = [
{
hostName = "sisko.fleet";
system = "aarch64-linux";
maxJobs = 4;
supportedFeatures = ["kvm" "nixos-test" "big-parallel" "benchmark"];
protocol = "ssh-ng";
sshUser = "root";
sshKey = "/home/${config.ccr.username}/.ssh/id_rsa";
}
{
hostName = "mac.staging.mlabs.city";
system = "x86_64-darwin";
maxJobs = 4;
supportedFeatures = ["kvm" "nixos-test" "big-parallel" "benchmark"];
protocol = "ssh-ng";
sshUser = "root";
sshKey = "/home/${config.ccr.username}/.ssh/id_rsa";
}
];
}; };
} }