diff options
author | MarcoFalke <*~=`'#}+{/-|&$^_@721217.xyz> | 2023-05-17 16:30:08 +0200 |
---|---|---|
committer | MarcoFalke <*~=`'#}+{/-|&$^_@721217.xyz> | 2023-05-17 16:29:58 +0200 |
commit | fa3761d19d716c2a5b25c76d092b1afbf65ec1d0 (patch) | |
tree | 8cc06e17fb61990e6631a1add509232594f1f749 /.cirrus.yml | |
parent | aaaa07bc845f0b8741270552e77b9694802fb0e3 (diff) |
ci: Reduce tsan CPU and memory for faster scheduling
Diffstat (limited to '.cirrus.yml')
-rw-r--r-- | .cirrus.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.cirrus.yml b/.cirrus.yml index 01369b0ee2..aa87cc3e30 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -243,8 +243,8 @@ task: name: '[TSan, depends, gui] [lunar]' << : *GLOBAL_TASK_TEMPLATE container: - cpu: 6 # Increase CPU and Memory to avoid timeout - memory: 24G + cpu: 4 + memory: 16G # The default memory is too small, so double everything docker_arguments: CI_IMAGE_NAME_TAG: ubuntu:lunar FILE_ENV: "./ci/test/00_setup_env_native_tsan.sh" @@ -298,7 +298,7 @@ task: << : *GLOBAL_TASK_TEMPLATE container: cpu: 4 - memory: 16G # The default memory is sometimes just a bit too small, so double everything + memory: 16G # The default memory is too small, so double everything docker_arguments: CI_IMAGE_NAME_TAG: ubuntu:focal FILE_ENV: "./ci/test/00_setup_env_i686_multiprocess.sh" |