From 972c84c08854ec57936fb175c2ed565e13badebd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20J=C3=A4ckel?= Date: Wed, 25 Jan 2023 13:25:32 +0100 Subject: [PATCH] Don't build aarch64 on dacbert --- hosts/hydra/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/hosts/hydra/default.nix b/hosts/hydra/default.nix index 724ee9f3..9d30858f 100644 --- a/hosts/hydra/default.nix +++ b/hosts/hydra/default.nix @@ -30,7 +30,8 @@ in buildMachines = [{ hostName = "client@dacbert.hq.c3d2.de"; system = lib.concatStringsSep "," [ - "aarch64-linux" "armv6l-linux" "armv7l-linux" + # "aarch64-linux" # very slow compared to gallium + "armv6l-linux" "armv7l-linux" ]; supportedFeatures = [ "kvm" "nixos-test" ]; maxJobs = 1;