Support setting jobReportLimit
to 0
, which always combines bulids
Signed-off-by: magic_rb <richard@brezak.sk>
This commit is contained in:
parent
28b6da6e73
commit
e53acc6660
|
@ -340,10 +340,10 @@ in
|
||||||
};
|
};
|
||||||
|
|
||||||
jobReportLimit = lib.mkOption {
|
jobReportLimit = lib.mkOption {
|
||||||
type = lib.types.nullOr lib.types.ints.positive;
|
type = lib.types.nullOr lib.types.ints.unsigned;
|
||||||
description = ''
|
description = ''
|
||||||
The max number of build jobs per `nix-eval` `buildbot-nix` will report to backends (GitHub, Gitea, etc.).
|
The max number of build jobs per `nix-eval` `buildbot-nix` will report to backends (GitHub, Gitea, etc.).
|
||||||
If set to `null`, report everything, if set to `n` (some positive intereger), report builds individually
|
If set to `null`, report everything, if set to `n` (some unsiggned intereger), report builds individually
|
||||||
as long as the number of builds is less than or equal to `n`, then report builds using a combined
|
as long as the number of builds is less than or equal to `n`, then report builds using a combined
|
||||||
`nix-build-combined` build.
|
`nix-build-combined` build.
|
||||||
'';
|
'';
|
||||||
|
|
Loading…
Reference in a new issue