Support setting jobReportLimit to 0, which always combines bulids

Signed-off-by: magic_rb <richard@brezak.sk>
This commit is contained in:
magic_rb 2024-07-15 12:08:36 +02:00
parent 28b6da6e73
commit e53acc6660

View file

@ -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.
''; '';