From d7b2637f59ac7ce0d1bcd099930c9d37dc0ee057 Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Sat, 29 Jan 2022 03:10:37 +0300 Subject: chore(nix/buildkite): reduce chunk size to 192 We've seen the famous 1 minute timeout on Buildkite again, probably due to something (keys in targets?) increasing the overall payload size of our chunks. This reduces the chunk size by 25%. Lets keep an eye on it with this value ... Change-Id: I6bf0e9e4ab0d5b8de22773e6cd5da8d0959cc448 Reviewed-on: https://cl.tvl.fyi/c/depot/+/5105 Tested-by: BuildkiteCI Autosubmit: tazjin Reviewed-by: sterni --- nix/buildkite/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'nix') diff --git a/nix/buildkite/default.nix b/nix/buildkite/default.nix index f8d69b2399..e0c947deae 100644 --- a/nix/buildkite/default.nix +++ b/nix/buildkite/default.nix @@ -117,7 +117,7 @@ in rec { # Buildkite backend which struggles to process more than a specific # number of chunks at once. pipelineChunks = name: steps: - attrValues (mapAttrs (makePipelineChunk name) (chunksOf 256 steps)); + attrValues (mapAttrs (makePipelineChunk name) (chunksOf 192 steps)); # Create a pipeline structure for the given targets. mkPipeline = { -- cgit 1.4.1