miniserver max jobs increased to 12
This commit is contained in:
parent
ebddba43b2
commit
31590477f3
@ -12,9 +12,19 @@
|
||||
allowedUDPPorts = [ 2049 ];
|
||||
};
|
||||
};
|
||||
nix =
|
||||
nix = {
|
||||
settings = {
|
||||
cores = 3;
|
||||
max-jobs = 12;
|
||||
};
|
||||
buildMachines =
|
||||
let
|
||||
featuresList = [
|
||||
buildMachine = hostName: maxJobs: {
|
||||
inherit hostName maxJobs;
|
||||
system = "x86_64-linux";
|
||||
sshUser = "nixremote";
|
||||
speedFactor = 1;
|
||||
supportedFeatures = [
|
||||
"nixos-test"
|
||||
"benchmark"
|
||||
"big-parallel"
|
||||
@ -23,17 +33,6 @@
|
||||
"gccarch-skylake"
|
||||
"gccarch-alderlake"
|
||||
];
|
||||
in
|
||||
{
|
||||
settings.cores = 3;
|
||||
buildMachines =
|
||||
let
|
||||
buildMachine = hostName: maxJobs: {
|
||||
inherit hostName maxJobs;
|
||||
system = "x86_64-linux";
|
||||
sshUser = "nixremote";
|
||||
speedFactor = 1;
|
||||
supportedFeatures = featuresList;
|
||||
};
|
||||
in
|
||||
[
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user