diff options
author | MarcoFalke <falke.marco@gmail.com> | 2021-04-06 07:57:26 +0200 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2021-04-06 07:57:30 +0200 |
commit | b2ec7d398fb03c98f4a758b19fa87d2807af58e3 (patch) | |
tree | cc2f73cdbdc76e763ce892b4e206dc969cbe1e0a | |
parent | 9ac8f6d7ddc4c949d84de5584baa813144c7fb26 (diff) | |
parent | de3ae78eff257302dd45e57e38067f72e970a123 (diff) |
Merge #21609: ci: increase CPU count of sanitizer job to increase memory limit
de3ae78eff257302dd45e57e38067f72e970a123 ci: increase CPU count of sanitizer job to increase memory limit (fanquake)
Pull request description:
According to the [docs](https://cirrus-ci.org/guide/linux/#linux-containers):
> For each CPU you can't get more than 4G of memory.
thus if we want this job to have 24GB of memory, we need to increase the CPU count to 6.
It's currently [failing with](https://github.com/bitcoin/bitcoin/runs/2273962280):
> Requested memory is too high! You can request at most 4G per CPU
Top commit has no ACKs.
Tree-SHA512: 0a4da5649d061425190a373859274c78ca5587cd2d6e27905ec548f124ed114a0133215cb2eff22ffc182f50c3a53df58e7c9832b44db6e37d7ea59ec96a4775
-rw-r--r-- | .cirrus.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.cirrus.yml b/.cirrus.yml index d7d5ab6c5c..8b88262e51 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -113,7 +113,7 @@ task: << : *GLOBAL_TASK_TEMPLATE container: image: ubuntu:focal - cpu: 4 # Double CPU and increase Memory to avoid timeout + cpu: 6 # Increase CPU and Memory to avoid timeout memory: 24G env: MAKEJOBS: "-j8" |