fix(ops/pipelines): limit depot-nix-eval to concurrency of 3
It seems we need more memory these days, and llama frequently ran OOM. Decrease the number of concurrent evaluations. Change-Id: I2648ebdedf09b80c9a231c4614004f953a646bc0 Reviewed-on: https://cl.tvl.fyi/c/depot/+/12662 Autosubmit: flokli <flokli@flokli.de> Tested-by: BuildkiteCI Reviewed-by: edef <edef@edef.eu>
This commit is contained in:
parent
0592614842
commit
5d235ff283
1 changed files with 1 additions and 1 deletions
|
@ -50,7 +50,7 @@ steps:
|
||||||
- label: ":llama:"
|
- label: ":llama:"
|
||||||
key: "pipeline-gen"
|
key: "pipeline-gen"
|
||||||
concurrency_group: 'depot-nix-eval'
|
concurrency_group: 'depot-nix-eval'
|
||||||
concurrency: 5 # much more than this and whitby will OOM
|
concurrency: 3 # much more than this and whitby will OOM
|
||||||
command: |
|
command: |
|
||||||
set -ue
|
set -ue
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue