feat: maintain server until hour
runner ubuntu smoke / ubuntu-latest label smoke (push) Has been cancelled
runner nix smoke / nix label and flake smoke (push) Has been cancelled

This commit is contained in:
2026-09-11 02:05:39 +00:00
parent ee8a33c3b0
commit cb62bd3044
13 changed files with 1059 additions and 124 deletions
@@ -92,12 +92,12 @@ in
concurrencyCap = lib.mkOption {
type = lib.types.int;
default = 2;
description = "Maximum simultaneously running ephemeral VMs (global).";
description = "Maximum simultaneously assigned runner VMs (global); retained idle VMs do not count.";
};
perRepoCap = lib.mkOption {
type = lib.types.int;
default = 1;
description = "Maximum concurrent ephemeral VMs per repo.";
description = "Maximum concurrently assigned runner VMs per repo; retained idle VMs do not count.";
};
reconcileIntervalSec = lib.mkOption {
type = lib.types.int;