about summary refs log tree commit diff
path: root/nix
diff options
context:
space:
mode:
authorVincent Ambo <mail@tazj.in>2022-01-29T00·10+0300
committerclbot <clbot@tvl.fyi>2022-01-29T09·17+0000
commitd7b2637f59ac7ce0d1bcd099930c9d37dc0ee057 (patch)
tree5236a42a15d813d2341528a9630f5e75dcda8652 /nix
parent2b460c4cc3325790fcd0a18364dec6e5510bd1c6 (diff)
chore(nix/buildkite): reduce chunk size to 192 r/3701
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 <tazjin@tvl.su>
Reviewed-by: sterni <sternenseemann@systemli.org>
Diffstat (limited to 'nix')
-rw-r--r--nix/buildkite/default.nix2
1 files changed, 1 insertions, 1 deletions
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 = {