Skip to content

Commit

Permalink
modules/shared/ci-builder: increase max-silent-time
Browse files Browse the repository at this point in the history
  • Loading branch information
zowoq committed Nov 30, 2024
1 parent 9de658b commit 3b7fb88
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion modules/shared/ci-builder.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
{
# match buildbot timeouts
# https://github.com/nix-community/buildbot-nix/blob/85c0b246cc96cc244e4d9889a97c4991c4593dc3/buildbot_nix/__init__.py#L1008
nix.settings.max-silent-time = toString (60 * 20);

# causes problems with cgroups: https://github.com/nix-community/infra/issues/1459#issuecomment-2507146996
nix.settings.max-silent-time = toString (60 * 20 * 3); # 3x buildbot

nix.settings.timeout = toString (60 * 60 * 3);
}

0 comments on commit 3b7fb88

Please sign in to comment.