From 0934b848a4e0507a7658193eb644e84a9c14b292 Mon Sep 17 00:00:00 2001 From: David Wagner Date: Tue, 4 Jun 2024 16:07:12 +0200 Subject: [PATCH] Don't use the Raspberry Pis as build machines. The emulated builds on nuc and x230 work well. --- modules/buildMachines.nix | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/modules/buildMachines.nix b/modules/buildMachines.nix index 6b737bc..a032251 100644 --- a/modules/buildMachines.nix +++ b/modules/buildMachines.nix @@ -33,21 +33,6 @@ supportedFeatures = [ "kvm" "nixos-test" "big-parallel" "benchmark" ]; inherit sshUser sshKey; } - { - hostName = "rp3"; - system = "aarch64-linux"; - maxJobs = 4; - supportedFeatures = [ "kvm" "nixos-test" "big-parallel" "benchmark" ]; - inherit sshUser sshKey; - } - { - hostName = "rp4"; - system = "aarch64-linux"; - maxJobs = 4; - supportedFeatures = [ "kvm" "nixos-test" "big-parallel" "benchmark" ]; - inherit sshUser sshKey; - speedFactor = 2; - } ]; }; }