From 38f9b8299e8a6e77f84d9f7982623184286cbc4a Mon Sep 17 00:00:00 2001 From: emily Date: Wed, 7 Aug 2024 11:17:45 +0200 Subject: [PATCH] Reduce maxJobs on build-worker-{03,04} --- config/services/hydra/nix-config.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/services/hydra/nix-config.nix b/config/services/hydra/nix-config.nix index 753e05a..03d7fb3 100644 --- a/config/services/hydra/nix-config.nix +++ b/config/services/hydra/nix-config.nix @@ -21,7 +21,7 @@ { hostName = "build-worker-03.nyantec.com"; sshUser = "nix-ssh"; - maxJobs = 8; + maxJobs = 4; speedFactor = 18; systems = [ "x86_64-linux" "riscv64-linux" ]; supportedFeatures = [ "nixos-test" "benchmark" "big-parallel" "kvm" "gccarch-x86-64" "gccarch-x86-64-v2" "gccarch-x86-64-v3" ]; @@ -30,7 +30,7 @@ { hostName = "build-worker-04.nyantec.com"; sshUser = "nix-ssh"; - maxJobs = 8; + maxJobs = 4; speedFactor = 18; systems = [ "x86_64-linux" "riscv64-linux" ]; supportedFeatures = [ "nixos-test" "benchmark" "big-parallel" "kvm" "gccarch-x86-64" "gccarch-x86-64-v2" "gccarch-x86-64-v3" ];