From baafab1d44632f58615ed1c256aa05a997fdcf6b Mon Sep 17 00:00:00 2001 From: Jean-Paul Calderone <exarkun@twistedmatrix.com> Date: Thu, 7 May 2020 08:27:18 -0400 Subject: [PATCH] try reducing build parallelism somewhat to deal with memory limits --- .circleci/config.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 7949f83..70e5ddd 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -122,7 +122,10 @@ jobs: # # Further, we want the "doc" output built as well because that's # where the coverage data ends up. - nix-build --argstr hypothesisProfile ci --arg collectCoverage true --attr doc + # + # Also limit the number of concurrent jobs because of resource + # constraints on CircleCI. :/ + nix-build --jobs 1 --argstr hypothesisProfile ci --arg collectCoverage true --attr doc - run: name: "Cache codecov" -- GitLab