hydra: fix copy paste errors in gallium

This commit is contained in:
Sandro - 2023-07-05 23:55:31 +02:00
parent f5079090da
commit 000002e220
Signed by: sandro
GPG Key ID: 3AF5A43A3EECC2E5
1 changed files with 3 additions and 2 deletions

View File

@ -59,15 +59,16 @@ in
# "aarch64-linux" # very slow compared to gallium
"armv6l-linux" "armv7l-linux"
];
speedFactor = 1;
supportedFeatures = [ "kvm" "nixos-test" ];
maxJobs = 1;
}
{
hostName = "gallium.supersandro.de";
maxJobs = config.nix.settings.max-jobs;
maxJobs = "4";
speedFactor = 10;
sshUser = config.nix.remoteBuilder.name;
supportedFeatures = config.nix.settings.system-features;
supportedFeatures = [ "big-parallel" "nixos-test" "benchmark" ];
system = "aarch64-linux";
}
];