From b405839de5da6f9c6f85366405885fbf077586fa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Wed, 4 Jan 2023 21:17:01 +0100 Subject: [PATCH] package/ci: reduce parallelism on the linux-static build. It OOMs way too often. --- package/ci/circleci.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/package/ci/circleci.yml b/package/ci/circleci.yml index 9d6988884..150c1d655 100644 --- a/package/ci/circleci.yml +++ b/package/ci/circleci.yml @@ -393,10 +393,12 @@ jobs: steps: - install-base-linux: extra: libgl1-mesa-dev libsdl2-dev libglfw3-dev libopenal-dev libvulkan-dev - # 24 is not enough, unlike the other GCC-based builds + # In this case it gets stuck even with 20 jobs, usually when the huge + # TradeAbstractImporterTest / TradeMaterialDataTest / TradeSceneDataTest + # get involved. # TODO: revisit when we get rid of more STL / deprecated includes - cap-ninja-jobs: - count: 20 + count: 16 - install-gcc-4_8 - install-cmake: version: "3.4.3"