diff options
author | Vincent Ambo <mail@tazj.in> | 2022-01-29T00·10+0300 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2022-01-29T09·17+0000 |
commit | d7b2637f59ac7ce0d1bcd099930c9d37dc0ee057 (patch) | |
tree | 5236a42a15d813d2341528a9630f5e75dcda8652 | |
parent | 2b460c4cc3325790fcd0a18364dec6e5510bd1c6 (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>
-rw-r--r-- | nix/buildkite/default.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nix/buildkite/default.nix b/nix/buildkite/default.nix index f8d69b23991c..e0c947deae91 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 = { |